[12.1.x EE8] Bump the dev-dependencies group in /jetty-ee8 with 5 updates #206
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: Merged PR Label Check | |
| on: | |
| pull_request_target: | |
| types: [closed] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| check-labels: | |
| if: github.event.pull_request.merged == true && github.event.pull_request.labels[0] == null | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Post Comment | |
| uses: actions/github-script@v9 | |
| with: | |
| script: | | |
| const pr = context.payload.pull_request; | |
| const mergedBy = pr.merged_by ? pr.merged_by.login : pr.user.login; | |
| const body = `Hi @${mergedBy}, this PR was merged without any labels. Please add at least one label (e.g., Bug, Enhancement, Documentation).`; | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: pr.number, | |
| body: body | |
| }); |