Skip to content

Commit

Permalink
ci: only run upstream/interop tests on master/PRs
Browse files Browse the repository at this point in the history
These are pretty expensive so there's no need to run them on push.
  • Loading branch information
Stebalien committed May 5, 2021
1 parent c5290b5 commit 9fd1047
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/interop.yml
@@ -1,4 +1,10 @@
on: [push, pull_request]
on:
pull_request:
branches:
- master
push:
branches:
- master
name: Interop Tests

jobs:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/upstream.yml
@@ -1,4 +1,10 @@
on: [push, pull_request]
on:
pull_request:
branches:
- master
push:
branches:
- master
name: Upstream Test

jobs:
Expand Down

0 comments on commit 9fd1047

Please sign in to comment.