Skip to content

Stable Release Step 1 - Create PR #5

Stable Release Step 1 - Create PR

Stable Release Step 1 - Create PR #5

on:
workflow_dispatch:
schedule:
- cron: "0 10 8-14 * tue"
jobs:
create-release-pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: create pull request
run: gh pr create -B stable -H dev-branch --title "Monthly Release PR - $(date '+%Y-%m-%d')" --body "Monthly pull request for creating the latest stable release from staged security fixes, bug fixes, and minor enhancements."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}