integration-test #4
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: Pull Request Integrator | |
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- synchronize | |
jobs: | |
merge: | |
# This job only runs for pull request comments | |
name: Merge on label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Group Open PRs and Merge | |
uses: ./ | |
id: group-and-merge | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
target-label: stage-ready | |
main-branch: 'main' | |
integration-branch: 'staging' |