We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 756d27e commit c421a51Copy full SHA for c421a51
.github/workflows/stage-to-prod-pr.yaml
@@ -0,0 +1,22 @@
1
+name: Daily Stage to Prod PR
2
+
3
+on:
4
+ # Daily at about noon eastern, 9am Pacific
5
+ schedule:
6
+ - cron: '0 16 * * *'
7
+ # Or manually via workflow dispatch.
8
+ workflow_dispatch:
9
10
+permissions:
11
+ contents: read
12
+ pull-requests: write
13
14
+jobs:
15
+ openStageToProdPR:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Create Pull Request
20
+ uses: peter-evans/create-pull-request@v7
21
+ with:
22
+ base: 'prod'
0 commit comments