Skip to content

Commit

Permalink
MNT Add merge-up workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Aug 1, 2023
1 parent a9f6a31 commit 4623d9b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/merge-up.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Merge-up

on:
# At 12:00 PM UTC, only on Friday
schedule:
- cron: '0 12 * * 5'
workflow_dispatch:

jobs:
merge-up:
name: Merge-up
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1

0 comments on commit 4623d9b

Please sign in to comment.