Merge pull request #555 from victordrose/feature/azure-ci-pipeline #584
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: Merge branch into int branch | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- feature/** | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, '!int') || github.ref_name == 'master' | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Merge branch into int | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
message: 'Merge ${{ github.ref_name }} into int' | |
target_branch: int | |
github_token: ${{ github.token }} |