docs: describe the real API instead of a fictional one #372
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: Labeler | |
| # pull_request_target is required: labeling fork PRs needs a write-scoped | |
| # token, which pull_request does not provide. The called reusable workflow | |
| # only runs actions/labeler (no checkout or execution of untrusted PR code), | |
| # so the usual pull_request_target risk does not apply here. | |
| on: # zizmor: ignore[dangerous-triggers] | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: {} | |
| jobs: | |
| labeler: | |
| uses: netresearch/.github/.github/workflows/labeler.yml@main | |
| permissions: | |
| contents: read | |
| pull-requests: write |