Manually update contributors list #2
This file contains 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
# This updates the Contributors list in the README.md | |
# it only gets run on: | |
# - Manually triggered | |
name: Manually update contributors list | |
on: | |
workflow_dispatch: # Run on manual trigger | |
jobs: | |
manually-update-contributors-list: | |
runs-on: ubuntu-latest | |
name: A job to automatically update the contributors list in the README.md | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Contribute List | |
uses: akhilmhdh/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |