Merge pull request #2 from RodrigoSMarques/master #5
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: PR Branch MASTER to BUGFIX | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: pull-request-master-to-bugfix | |
if: ${{ github.repository == 'RodrigoSMarques/flutter_branch_sdk' }} | |
uses: repo-sync/pull-request@v2 | |
with: | |
source_branch: "master" | |
destination_branch: "bugfix" | |
pr_title: "PR Branch MASTER into BUGFIX" | |
pr_body: "👑 *An automated PR*" | |
pr_label: "auto-pr" | |
pr_draft: false | |
pr_allow_empty: false | |
github_token: ${{ secrets.GITHUB_TOKEN }} |