feat: Move applications dialog to own page #522
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: Label PRs | |
| # SECURITY: This workflow uses pull_request_target so it can label fork PRs. | |
| # pull_request_target runs with write access to the base repo's GITHUB_TOKEN. | |
| # To keep this safe, NEVER add a checkout step as executing untrusted fork code | |
| # with elevated permissions is a security risk. | |
| # Do not add any other steps in this workflow! | |
| on: | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" |