Issue #11214: Specify violation messages for EmptyForInitializerPadCh… #2
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
############################################################################# | |
# GitHub action to set latest milestone on issue of merged PR. | |
# | |
############################################################################# | |
name: 'Milestone issue closed by PR' | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
set-milestone: | |
if: github.repository == 'checkstyle/checkstyle' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout the latest code | |
uses: actions/checkout@v4 | |
- name: Set milestone on issue | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./.ci/set-milestone-on-referenced-issue.sh '${{ toJSON(github.event.commits) }}' |