Skip to content

Commit

Permalink
gha: only run transform-sdk-build on push to dev and release branches
Browse files Browse the repository at this point in the history
Without this change, PR checks will run twice:
1. transform-sdk-build / Build integration tests (pull_request)
2. transform-sdk-build / Build integration tests (push)

(cherry picked from commit 3aaf695)
  • Loading branch information
andrewhsu committed Sep 25, 2024
1 parent f3dc0c4 commit 39ac9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/transform-sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: transform-sdk-build
on:
push:
tags: ['*']
branches: ['*']
branches: [dev, 'v*']
paths:
- 'src/transform-sdk/**'
- '.github/workflows/transform-sdk-build.yml'
Expand Down

0 comments on commit 39ac9be

Please sign in to comment.