Update Contributors #231
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: Update Contributors | |
| on: | |
| schedule: | |
| # Run every day at 00:00 UTC | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: # Allow manual trigger | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| update-contributors: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Update Contributors | |
| uses: akhilmhdh/contributors-readme-action@1ff4c56187458b34cd602aee93e897344ce34bfc # v2.3.10 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| image_size: 100 | |
| columns_per_row: 8 | |
| collaborators: "direct" | |
| readme_path: "README.md" | |
| committer_username: "github-actions[bot]" | |
| committer_email: "github-actions[bot]@users.noreply.github.com" | |
| commit_message: "docs: update contributors list [skip ci]" |