Merge pull request #1089 from RedHatInsights/dependabot/npm_and_yarn/… #477
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/[email protected] | |
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' |