Update Contributors in README #10
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 in README | |
| on: | |
| schedule: | |
| # Run every Friday at 15:00 UTC | |
| - cron: '0 15 * * 5' | |
| jobs: | |
| update-readme: | |
| name: Update the README | |
| if: ${{ github.repository_owner == 'scalar' }} | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Update the list of contributors | |
| uses: akhilmhdh/contributors-readme-action@1ff4c56187458b34cd602aee93e897344ce34bfc | |
| with: | |
| use_username: true | |
| env: | |
| # https://github.com/settings/tokens/new | |
| # Expiration: No expiration | |
| # Select: read:org | |
| GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |