feat(ci): add nxProjectsFilter option, forwards custom filters to Nx CLI #3082
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: PR Labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| jobs: | |
| label: | |
| name: Add PR labels | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/labeler@v5 | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| sync-labels: true |