Skip to content

Commit

Permalink
chore: schedule prod deploy PR every Tue
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge committed Feb 27, 2024
1 parent ee02d94 commit 1812552
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy.yml
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 }}

0 comments on commit 1812552

Please sign in to comment.