chore(deps-dev): bump vitest from 3.2.4 to 4.0.8 #293
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
| ###################################################################################### | |
| # READ THIS FIRST | |
| # This file is authored in filecoin-project/github-mgmt repository and MANUALLY copied to other repos. | |
| # See https://github.com/filecoin-project/github-mgmt/blob/master/files/.github/workflows/add-issues-and-prs-to-fs-project-board.yml for more info. | |
| ###################################################################################### | |
| # This action adds all issues and PRs with a "team/fs-wg" label to the FS project board. | |
| # It is used to keep the FS project board up to date with the issues and PRs. | |
| # It is triggered by the issue and PR events. | |
| # It assumes a `FILOZZY_CI_ADD_TO_PROJECT` secret is set in the repo. | |
| # This secret should have the permissions outlined in https://github.com/actions/add-to-project?tab=readme-ov-file#creating-a-pat-and-adding-it-to-your-repository | |
| name: Add issues and PRs to FS project board | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| # Using "pull_request_target" instead of "pull_request" to support PRs from forks. | |
| # pull_request_target has access to secrets even for fork PRs, which is necessary | |
| # for this action to authenticate and add items to the project board. | |
| # pull_request_target runs the workflow file from the base branch (main), | |
| # not from the PR branch, so attackers cannot modify this workflow via PR. | |
| # This action does not check out nor execute user code so we should be safe. | |
| # We also hardcode to specific hash to ensure no unintended changes underneath us. | |
| pull_request_target: | |
| types: | |
| - labeled | |
| jobs: | |
| add-to-project: | |
| name: Add all "team/fs-wg" issues and PRs to project | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'team/fs-wg' | |
| steps: | |
| - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 | |
| continue-on-error: true # Don't fail if item already exists in project. actions/add-to-project does not currently handle this case gracefully. | |
| with: | |
| project-url: https://github.com/orgs/FilOzone/projects/14 | |
| github-token: ${{ secrets.FILOZZY_CI_ADD_TO_PROJECT }} | |
| labeled: team/fs-wg |