Notifications are also enabled when a pull request is opened and the pipeline is triggered manually. #92
Workflow file for this run
This file contains hidden or 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: 'LEGO automerge' | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| branches: | |
| - Localization | |
| jobs: | |
| worker: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| if: github.actor == 'csigs' | |
| steps: | |
| - uses: actions-ecosystem/action-add-labels@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: enhancement | |
| - uses: actions/github-script@v3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| github.pulls.merge({ | |
| owner: context.payload.repository.owner.login, | |
| repo: context.payload.repository.name, | |
| pull_number: context.payload.pull_request.number, | |
| merge_method: 'squash' | |
| }) |