Sync Fork #31
This file contains hidden or 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
name: Sync Fork | |
# Sync fork with the main branch of apache/activemq-artemis with the upstream-mirror branch of this repository. | |
# SEE https://github.com/marketplace/actions/fork-sync | |
on: | |
schedule: | |
- cron: '0 13 ? * Sat' | |
workflow_dispatch: # on button click | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tgymnich/fork-sync@v1.9.0 | |
with: | |
owner: apache | |
repo: activemq-artemis | |
head: main | |
base: upstream-mirror | |
pr_title: Fork Sync with Upstream | |
auto_approve: false | |
# auto_merge: false | |
retries: 2 |