Skip to content

Commit

Permalink
ci: format condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Jul 25, 2024
1 parent 360269e commit 379c7d8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ jobs:
run: go test -coverprofile=coverage.txt -v -race ./...

- name: Upload coverage reports to Codecov
# don't run if branch name starts with 'renovate/' or 'release-please--'
if: "!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'release-please--')"
if: >
!startsWith(github.head_ref, 'renovate/') &&
!startsWith(github.head_ref, 'release-please--')
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 379c7d8

Please sign in to comment.