Skip to content

Commit

Permalink
Merge branch 'combineImages' into develop
Browse files Browse the repository at this point in the history
* combineImages:
  Ignore push events on merge queue
  • Loading branch information
sidharthv96 committed Jan 19, 2024
2 parents 6424f82 + aadf32a commit 6334516
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ name: E2E

on:
push:
branches-ignore:
- 'gh-readonly-queue/**'
pull_request:
merge_group:

Expand All @@ -16,7 +18,7 @@ permissions:

env:
# For PRs and MergeQueues, the target commit is used, and for push events, github.event.previous is used.
targetHash: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event_name == 'merge_group' && github.event.merge_group.base_sha || github.event.before }}
targetHash: ${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha || github.event.before }}

jobs:
cache:
Expand Down

0 comments on commit 6334516

Please sign in to comment.