silverstripe-gridfieldexten.../.github/workflows/merge-up.yml

23 lines
499 B
YAML
Raw Normal View History

2023-08-09 06:19:09 +02:00
name: Merge-up
on:
2024-05-17 04:06:23 +02:00
# At 8:40 PM UTC, only on Thursday
2023-08-09 06:19:09 +02:00
schedule:
2024-05-17 04:06:23 +02:00
- cron: '40 20 * * 4'
2023-08-09 06:19:09 +02:00
workflow_dispatch:
2024-05-16 00:24:05 +02:00
permissions: {}
2023-08-09 06:19:09 +02:00
jobs:
merge-up:
name: Merge-up
# Only run cron on the symbiote account
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
2024-05-16 00:24:05 +02:00
permissions:
contents: write
actions: write
2023-08-09 06:19:09 +02:00
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1