Update README.md #16
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
name: Update Contributors in README | |
on: | |
push: | |
branches: ["master"] | |
workflow_dispatch: | |
jobs: | |
contrib-readme-job: | |
runs-on: ubuntu-latest | |
name: A job to automate contrib in readme | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Update Contributors List | |
uses: akhilmhdh/[email protected] | |
with: | |
commit_message: "Updated contributors list" | |
committer_username: "vansh-codes" | |
committer_email: "[email protected]" | |
readme_path: "CONTRIBUTORS.md" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |