stats #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: stats | |
on: [create, workflow_dispatch] | |
jobs: | |
gen_stats: | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
runs-on: ubuntu-latest | |
steps: | |
# Credit: https://stackoverflow.com/questions/58033366/how-to-get-the-current-branch-within-github-actions | |
- name: Extract branch name | |
#run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.extract_branch.outputs.branch }} | |
- run: ${{ github.workspace }}/.github/scripts/gen_stats.sh | |
- name: Commit changes | |
run: |- | |
for r in $(git remote) ; do git remote get-url --all $r ; done | |
git config user.name github-actions | |
git config user.email [email protected] | |
git commit -a -m '[Bot] stats - Update STATS.md' | |
git push | |
# commit_user_email: stats@nill | |
# commit_author: STATS BOT <stats> | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
man: | |
- 'man.md' | |
autotools: | |
- 'aclocal.m4' | |
- 'configure.ac' | |
- uses: docker://pandoc/core:2.17 | |
if: ${{ github.event_name == 'workflow_dispath' || steps.changes.outputs.man == 'true' }} | |
with: | |
args: -s man.md -t man -o shc.1 | |
- uses: docker://pandoc/core:2.17 | |
if: ${{ github.event_name == 'workflow_dispath' || steps.changes.outputs.man == 'true' }} | |
with: | |
args: -s man.md -t html -o man.html | |
- run: |- | |
./autogen.sh | |
if: ${{ github.event_name == 'workflow_dispath' || steps.changes.outputs.autotools == 'true' }} | |
- name: Commit changes | |
if: ${{ github.event_name == 'workflow_dispath' || steps.changes.outputs.man == 'true' || steps.changes.outputs.autotools }} | |
run: |- | |
for r in $(git remote) ; do git remote get-url --all $r ; done | |
git config user.name github-actions | |
git config user.email [email protected] | |
git commit -a -m "ci: Github Action Generate Files" | |
git push |