Generate changelog entries for release

This commit is contained in:
Zach Borboa
2022-09-23 12:21:10 -07:00
parent 8666fc38fb
commit 52ec16902f
3 changed files with 86 additions and 10 deletions
+13
View File
@@ -15,5 +15,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install --requirement scripts/requirements.txt
- name: Set git details
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Update list
run: python scripts/update_changelog.py
env:
PRODUCTION: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}