Merge pull request #1090 from RedHatInsights/dependabot-pf6 #478
This file contains 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: Deployed CI | |
on: | |
push: | |
branches: [devel] | |
jobs: | |
sync-branches: | |
runs-on: ubuntu-latest | |
name: Syncing branches | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Opening pull request | |
id: pull | |
uses: tretuna/sync-branches@1.4.0 | |
with: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
FROM_BRANCH: 'devel' | |
TO_BRANCH: 'master' | |
PULL_REQUEST_AUTO_MERGE_METHOD: 'rebase' | |
PULL_REQUEST_TITLE: 'Sync devel -> master' | |
PULL_REQUEST_BODY: 'Automatically syncing devel with master' |