Skip to content

Fix/check contracts pipeline issue #140

Fix/check contracts pipeline issue

Fix/check contracts pipeline issue #140

Workflow file for this run

name: Update Contributors
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: write
jobs:
update-contributors:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Fetch contributors and update README
run: |
pip install requests
python update_readme.py
env:
TOKEN_GH: ${{ secrets.TOKEN_GH }}
- name: Commit and push changes
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git add README.md
git commit -m "Update contributors"
git push