2020-09-04 18:26:24 +03:00
|
|
|
name: Update Changelog
|
|
|
|
|
|
|
|
on:
|
|
|
|
# Every day at 2am
|
|
|
|
schedule:
|
|
|
|
- cron: "0 2 * * *"
|
|
|
|
# Manual trigger
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2021-11-18 12:36:42 +03:00
|
|
|
release:
|
|
|
|
# Disables this workflow from running in a repository that is not part of the indicated organization/user
|
|
|
|
if: github.repository_owner == 'cookiecutter'
|
|
|
|
|
2020-09-04 18:26:24 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-02 12:17:47 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-09-04 18:26:24 +03:00
|
|
|
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Set up Python
|
2022-03-01 18:25:18 +03:00
|
|
|
uses: actions/setup-python@v3
|
2021-11-20 01:06:56 +03:00
|
|
|
with:
|
|
|
|
python-version: "3.9"
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Set git details
|
|
|
|
run: |
|
|
|
|
git config --global user.name "github-actions"
|
|
|
|
git config --global user.email "action@github.com"
|
|
|
|
- name: Update list
|
|
|
|
run: python scripts/update_changelog.py
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|