release: add step to change each milestone's bug status as "Fix released" #10167
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: Inclusive naming PR check | |
| on: pull_request | |
| jobs: | |
| inclusive-naming-check: | |
| name: Inclusive-naming-check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5 | |
| - name: woke | |
| uses: get-woke/woke-action-reviewdog@d71fd0115146a01c3181439ce714e21a69d75e31 # v0 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-check | |
| fail-on-error: true | |
| woke-args: ${{ steps.changed-files.outputs.all_changed_files }} |