Bump CLI (#158) #420
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: Generate action documentation | |
on: | |
push: | |
branches: [trunk] | |
paths: | |
- '.github/workflows/generate-docs.yml' | |
- '**/action.yml' | |
- 'README.md' | |
workflow_dispatch: | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.event_name }}' | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
generate-docs: | |
name: Generate action documentation | |
runs-on: elvia-runner | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get GitHub App token | |
uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ vars.GH_APP_ID }} | |
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
owner: ${{ github.repository_owner }} | |
- name: Generate docs | |
uses: 3lvia/gh-actions-docs@v1 | |
with: | |
ignore-files: 'my-new-action/action.yml' | |
ignore-headers: '# core-github-actions-templates,## Table of Contents' | |
run-prettier: 'true' | |
- name: Commit changes | |
shell: bash | |
run: | | |
if [[ -z "$(git status --porcelain)" ]]; then | |
echo 'No changes to commit.' | |
exit 0 | |
fi | |
git config user.email '${{ vars.GH_APP_USER_EMAIL }}' | |
git config user.name '${{ vars.GH_APP_USERNAME }}' | |
git add README.md | |
git commit -m 'Update action documentation' | |
git push | |
env: | |
GH_TOKEN: ${{ steps.app-token.outputs.token }} |