Merge pull request #8 from tkb1902/patch-1 #11
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 Changelog | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- master | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
pip install PyGithub | |
pip install python-dateutil | |
- name: Debug | |
run: | | |
echo "GitHub Token: ${{ secrets.ACTION_TOKEN }}" | |
echo "Commit SHA: ${{ github.sha }}" | |
- name: Run script | |
run: python update_changelog.py ${{ github.sha }} ${{ secrets.ACTION_TOKEN }} | |
- name: Commit changes | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add changelog.md | |
git commit -m "Update changelog" | |
git push |