Skip to content

Commit

Permalink
Merge pull request #752 from ivanvc/dont-run-race-tests-on-user-forks
Browse files Browse the repository at this point in the history
github/workflows: don't run race tests on user forks
  • Loading branch information
ahrtr authored May 9, 2024
2 parents cbab14e + 2064324 commit a9d3063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions: read-all
jobs:
test-linux:
# this is to prevent arm64 jobs from running at forked projects
if: ${{ github.repository == 'etcd-io/bbolt' || startsWith(inputs.runs-on, 'ubuntu') }}
if: ${{ github.repository == 'etcd-io/bbolt' || inputs.runs-on == 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit a9d3063

Please sign in to comment.