Skip to content

Automated scheduled releases with changelogs [WIP] #4

Automated scheduled releases with changelogs [WIP]

Automated scheduled releases with changelogs [WIP] #4

name: Regular Version
on:
workflow_dispatch: # Allows triggering manually
schedule:
- cron: '47 14 * * 2' # runs every Tuesday at 14:47 UTC (chosen somewhat randomly)
pull_request:
branches:
main
jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: release
- name: Create Pull Request
run: gh pr create --fill-first
env:
# Needed so that CI triggers
GH_TOKEN: ${{ secrets.MACHINE_USER_PAT }}