Skip to content

Commit

Permalink
bring back trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Mar 17, 2024
1 parent bd937b1 commit d9332dd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ jobs:
# on the stock runners. Since no developer iteration loop depends on this, we use the stock gh runners. If
# we need to bring back the AWS runners, checkout 98f3e85a9ea2634298653642b18ac38fd1b85929 as a reference.
runs-on: ubuntu-latest
needs:
- changes
# Because scheduled builds on main require us to skip the changes job. Use always() to force this to run on master.
if: |
needs.changes.outputs.frontend == 'true' || needs.changes.outputs.build == 'true' || github.ref == 'refs/heads/main'
|| (always() && needs.changes.outputs.frontendServers == 'true')
steps:
- name: Checkout Airbyte
uses: actions/checkout@v3
Expand Down

0 comments on commit d9332dd

Please sign in to comment.