Skip to content

Commit 0020580

Browse files
committed
fix: disable certora for pull request runs as it will fail anyways
1 parent 9b587cc commit 0020580

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/certora-stata.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ on:
1313
jobs:
1414
verify:
1515
runs-on: ubuntu-latest
16-
16+
if:
17+
github.event.pull_request.head.repo.full_name == github.repository || (github.event_name == 'push' &&
18+
github.ref == format('refs/heads/{0}', github.event.repository.default_branch))
1719
steps:
1820
- uses: actions/checkout@v2
1921
with:

0 commit comments

Comments
 (0)