add: list and js code #4
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: | |
- main | |
workflow_dispatch: | |
jobs: | |
update-contributors: | |
runs-on: ubuntu-latest | |
name: Automate Contributors Update in README | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Update Contributors List in README | |
uses: akhilmhdh/[email protected] | |
with: | |
commit_message: "update contributors list in README" | |
committer_username: "ajay-dhangar" | |
committer_email: "[email protected]" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |