Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: silverstripe/recipe-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b139a346bf7db6c7f3f44574090a345c068e6710
Choose a base ref
..
head repository: silverstripe/recipe-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0824ade28133ca12e4ccc07e77d75183d047aff8
Choose a head ref
Showing with 17 additions and 0 deletions.
  1. +17 −0 .github/workflows/merge-up.yml
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 Tuesday
schedule:
- cron: '0 12 * * 2'
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