-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: schedule prod deploy PR every Tue
- Loading branch information
1 parent
c8039c0
commit d5129fd
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Prod Deploy | ||
|
||
on: | ||
# Run this action every Tuesday at 02:00 UTC (Singapore 10AM) | ||
schedule: | ||
- cron: "0 2 * * 2" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: gh pr create -B main -H develop --title 'Prod deploy' --fill | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |