fix: update to support better Android notifications #18
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
| # Tags any PR that touches a dev-base manifest (k8s/app-manifest/**) with `prod-review`, so | |
| # dev changes that could flow to prod via the overlays are never missed for a prod-carry decision. | |
| # Rules live in .github/labeler.yml. | |
| name: prod-review label | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| # pull_request_target runs in the base repo's context (needed to write labels), but this job only | |
| # reads the changed-file list and applies a label — it never checks out or runs PR code. | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Pinned to a full commit SHA (supply-chain hardening) — a moving tag could be repointed. | |
| # 8558fd7 == actions/labeler v5.0.0; bump the SHA + comment together to update. | |
| - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 | |
| with: | |
| configuration-path: .github/labeler.yml | |
| sync-labels: false |