Skip to content

Automatically populate the changelog from GitHub PRs #4

Automatically populate the changelog from GitHub PRs

Automatically populate the changelog from GitHub PRs #4

Workflow file for this run

name: 📃 Changelog
on:
push:
schedule:
- cron: 7 0 * * 0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: 💂 Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: requirements/base.txt
- run: git --version
- name: 📥 Generate changelog
run: scripts/mkchangelog
env:
GH_TOKEN: ${{ secrets.ITOU_TECH_GH_TOKEN }}