manual-update-contributors-list.yaml 584 B

123456789101112131415161718192021
  1. # This updates the Contributors list in the README.md
  2. # it only gets run on:
  3. # - Manually triggered
  4. name: Manually update contributors list
  5. on:
  6. workflow_dispatch: # Run on manual trigger
  7. jobs:
  8. manually-update-contributors-list:
  9. runs-on: ubuntu-latest
  10. name: A job to automatically update the contributors list in the README.md
  11. permissions:
  12. contents: write
  13. pull-requests: write
  14. steps:
  15. - name: Contribute List
  16. uses: akhilmhdh/contributors-readme-action@v2.3.10
  17. env:
  18. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}