Skip to content

Commit

Permalink
fix: stable merge workflow (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
digikata authored Jan 18, 2024
1 parent 69f96d3 commit 09f435a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/sync-master-to-stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Sync Master to Stable
on:
workflow_dispatch:
# Generates a PR that syncs stable to master

jobs:
generate_sync_pr:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Generate PR
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./scripts/sync-master-to-stable.sh

0 comments on commit 09f435a

Please sign in to comment.