Skip to content

Commit

Permalink
ci: update tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Jul 15, 2024
1 parent 78b3668 commit 21676b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Before you mark the PR ready for review, please make sure that:
- If the change does not require a CHANGELOG.md entry, do one of the following:
- Add `[skip changelog]` to the PR title
- Add the label `skip/changelog` to the PR
- [ ] Add the label `need/very-expensive-tests` if the PR requires running very expensive tests
- [ ] New features have usage guidelines and / or documentation updates in
- [ ] [Lotus Documentation](https://lotus.filecoin.io)
- [ ] [Discussion Tutorials](https://github.com/filecoin-project/lotus/discussions/categories/tutorials)
- [ ] Tests exist for new functionality or change in behavior
- [ ] CI is green
- [ ] Add the label `run-very-expensive-tests` if the PR requires running very expensive tests
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- id: envs
env:
GITHUB_EVENT_NAME: ${{ github.event_name }}
HAS_RUN_VERY_EXPENSIVE_LABEL: ${{ contains(github.event.pull_request.labels.*.name, 'run-very-expensive-tests') }}
HAS_RUN_VERY_EXPENSIVE_LABEL: ${{ contains(github.event.pull_request.labels.*.name, 'need/very-expensive-tests') }}
run: |
if [[ "${GITHUB_EVENT_NAME}" = "pull_request" && "${HAS_RUN_VERY_EXPENSIVE_LABEL}" = "true" ]]; then
echo "run_very_expensive_tests=1" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 21676b5

Please sign in to comment.