feat(fe-worker): preserve compact MARS ranges through metkit expansion #506
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: PR Workflow Check | |
| on: | |
| pull_request_target: ~ | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| check: | |
| if: ${{ github.event.pull_request.head.repo.fork }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check changes to .github | |
| id: check | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 | |
| with: | |
| script: | | |
| const files = await github.paginate(github.rest.pulls.listFiles, { | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| pull_number: context.payload.pull_request.number, | |
| per_page: 100, | |
| }); | |
| // Consider both the current and previous path (for renames/deletes) | |
| const changed = new Set(); | |
| for (const f of files) { | |
| changed.add(f.filename); | |
| if (f.previous_filename) changed.add(f.previous_filename); | |
| } | |
| core.info("==> Changed files:"); | |
| for (const f of changed) core.info(f); | |
| const violations = [...changed].filter(f => f.startsWith(".github/")); | |
| if (violations.length > 0) { | |
| core.info(`==> Found ${violations.length} violations!`); | |
| core.info("==> Violating files"); | |
| violations.forEach(v => core.info(v)); | |
| core.setOutput("bad", "true"); | |
| core.setFailed("PR is trying to change a workflow!"); | |
| } else { | |
| core.info("All OK"); | |
| core.setOutput("bad", "false"); | |
| } | |
| - name: Comment PR | |
| if: ${{ always() && steps.check.outputs.bad == 'true' }} | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 | |
| with: | |
| script: | | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: `> [!CAUTION] | |
| > This pull request contains changes to GitHub workflows! | |
| > Proceed with caution and if not sure, contact your GitHub admin.` | |
| }) |