Issue #17168: Moved WhiteSpace Module Inputs to Compilable Folder #8
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: "Generate release notes" | |
| on: | |
| workflow_dispatch: null | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate: | |
| if: github.repository == 'checkstyle/checkstyle' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Download checkstyle | |
| uses: actions/checkout@v4 | |
| - name: Setup local maven cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: checkstyle-maven-cache-${{ hashFiles('**/pom.xml') }} | |
| - name: Generate release notes | |
| env: | |
| READ_ONLY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: ./.ci/releasenotes-gen.sh |