Skip to content

Commit

Permalink
fix: dont run ci twice for branch (#1531)
Browse files Browse the repository at this point in the history
* fix: dont run ci twice for branch

Up until recently we never really had a problem with
the fact that we were incidentally duplicating CI runs
for every PR that was pushed. As our test suite is growing
and we're nearing a 2.0 release now is as good a time as
any to fix this and ensure we're only running one copy
of the integration tests per PR.
  • Loading branch information
shaneutt authored Jul 12, 2021
1 parent 50d069d commit 815a74c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/1x-integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: 1.x Integration Tests
on:
pull_request:
branches:
- 'main'
- 'next'
- '*'
push:
branches:
- '*'
- 'main'
- 'next'
tags:
- '1.*'
- 'v1.*'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/2x-integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: 2.x Integration Tests
on:
pull_request:
branches:
- 'main'
- 'next'
- '*'
push:
branches:
- '*'
- 'main'
- 'next'
tags:
- '2.*'
- 'v2.*'
Expand Down

0 comments on commit 815a74c

Please sign in to comment.