chore(ci)(deps): bump actions/github-script from 8 to 9 in the actions-core group #10
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: Auto Label | |
| # Automatically applies path-based labels to pull requests. | |
| # Label rules are defined in .github/labeler.yml. | |
| # Uses pull_request_target so it can label PRs from forks safely (read-only | |
| # checkout + write permission scoped to labels only). | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| name: Apply path-based labels | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| configuration-path: .github/labeler.yml | |
| sync-labels: true |