docs: mark XP's Event system TODO bullet superseded by ADR 0030 #770
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
| # Label pull requests from the paths they touch, per .github/labeler.yml. | |
| # | |
| # `pull_request_target` rather than `pull_request` so a pull request from a | |
| # fork can be labelled too (the `/preview` flow in build.yml already expects | |
| # fork branches). Nothing from the pull request is checked out or run here — | |
| # the action only reads the changed file list and the rules on master — so the | |
| # write-scoped token never meets the branch's code. | |
| name: PR labeler | |
| on: | |
| pull_request_target: | |
| types: [ opened, synchronize, reopened, ready_for_review ] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: labeler-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| label: | |
| # Nothing here but the labeler action itself -- no checkout, no build | |
| # tooling -- so the small `ubuntu-slim` image (1 CPU, 5 GB RAM, 15-minute | |
| # cap) covers it at a lower rate. See `preview-gate` in build.yml for the | |
| # same reasoning. | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/labeler@v7 | |
| with: | |
| # Add only. A label a maintainer put on by hand stays on even when no | |
| # path matches it any more. | |
| sync-labels: false |