This repository was archived by the owner on May 22, 2025. It is now read-only.
Compile changelogs #4567
This file contains hidden or 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: Compile changelogs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 6 * * *" | |
- cron: "0 14 * * *" | |
- cron: "0 22 * * *" | |
jobs: | |
compile: | |
name: "Compile changelogs" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Setup python" | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- name: "Install deps" | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pyyaml | |
sudo apt-get install dos2unix | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 25 | |
- name: "Compile" | |
run: | | |
python tools/ss13_genchangelog.py html/changelog.html html/changelogs | |
- name: "Convert Lineendings" | |
run: | | |
unix2dos html/changelogs/.all_changelog.yml | |
- name: Commit | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Changelogs" | |
git pull origin master | |
git commit -m "Automatic changelog compile [ci skip]" -a || true | |
- name: "Push" | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.JAMIE }} |