fix(workflow): 修复工作流文件名称 #4
This file contains hidden or 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 Contributors Images | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| generate-contributors: | |
| if: github.repository == 'anghunk/linuxdo-scripts' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate Contributors Images | |
| uses: jaywcjlove/github-action-contributors@main | |
| id: contributors | |
| with: | |
| filter-author: (renovate\[bot\]|renovate-bot|dependabot\[bot\]) | |
| avatarSize: 42 | |
| - name: Modify README.md | |
| uses: jaywcjlove/github-action-modify-file-content@main | |
| with: | |
| path: README.md | |
| body: '${{steps.contributors.outputs.htmlList}}' |