Improve tagger coverage and accuracy (#1789) #1359
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: Contributors | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: manual run | |
| required: false | |
| default: "" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| contributors: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: wow-actions/contributors-list@v1.2.1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| round: false | |
| includeBots: false | |
| svgPath: docs/static/CONTRIBUTORS.svg | |
| noCommit: true | |
| - uses: peter-evans/create-pull-request@v8.1.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: | | |
| chore: update contributors | |
| Co-authored-by: ksg97031 <ksg97031@gmail.com> | |
| title: "chore: update contributors" | |
| body: Automated update of `docs/static/CONTRIBUTORS.svg`. | |
| branch: chore/update-contributors | |
| delete-branch: true |