chore: update actions/setup-node action to v7 #57
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: add-to-triage | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| - reopened | |
| - transferred | |
| pull_request_target: | |
| types: | |
| - opened | |
| - reopened | |
| workflow_call: | |
| secrets: | |
| project_bot_token: | |
| required: true | |
| description: Token for the project bot to add issues and pull requests to the project triage board | |
| jobs: | |
| add-to-triage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add to triage | |
| uses: actions/add-to-project@v2.0.0 | |
| with: | |
| github-token: ${{ secrets.project_bot_token }} | |
| project-url: https://github.com/orgs/eslint/projects/3 | |
| labeled: "triage:no" # Add all issues and pull requests that don't include "triage:no" label. | |
| label-operator: NOT |