ci: persist staged mining candidates #884
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: Fix NLS Comments | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - '**.java' | |
| jobs: | |
| fix-nls: | |
| runs-on: ubuntu-latest | |
| # Only run if PR is from Copilot or has specific label | |
| if: github.actor == 'copilot[bot]' || contains(github.event.pull_request.labels.*.name, 'auto-fix-nls') | |
| permissions: | |
| contents: write # Required: push NLS comment fixes to PR branch | |
| pull-requests: write # Required: access PR branch information | |
| steps: | |
| - name: Checkout PR branch | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Fix missing NLS comments in plugin sources | |
| run: .github/scripts/fix-nls.sh | |
| - name: Check for changes | |
| id: changes | |
| run: | | |
| git add -A | |
| if git diff --staged --quiet; then | |
| echo "has_changes=false" >> $GITHUB_OUTPUT | |
| else | |
| echo "has_changes=true" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Commit and push fixes | |
| if: steps.changes.outputs.has_changes == 'true' | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git commit -m "fix: Add missing NLS comments to string literals" | |
| git push |