Skip to content

Commit

Permalink
ci(trace): fix workflow conditions (#35800)
Browse files Browse the repository at this point in the history
Fixing skip check logic with small typos.

## Bug

- [x] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `yarn lint`
  • Loading branch information
kwonoj committed Mar 31, 2022
1 parent d165836 commit 6a1e8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_test_deploy.yml
Expand Up @@ -1216,7 +1216,7 @@ jobs:
name: Performance Metrics for Release Build
runs-on: ubuntu-latest
needs: [build, build-native-test, check-trace-secrests]
if: needs.check-trace-secrests.trace-api-key == 'true'
if: needs.check-trace-secrests.outputs.trace-api-key == 'true'
steps:
- name: Setup node
uses: actions/setup-node@v2
Expand Down

0 comments on commit 6a1e8db

Please sign in to comment.