Skip to content

Commit

Permalink
Merge branch 'main' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 authored Oct 24, 2024
2 parents a95d4cf + 3a2d893 commit 4ac1211
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/composite.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,25 @@ jobs:
release:
runs-on: ubuntu-latest
if: |
github.event_name == 'push' && (
github.ref == 'refs/heads/alpha' ||
github.ref == 'refs/heads/beta' ||
github.ref == 'refs/heads/canary' ||
github.ref == 'refs/heads/main' ||
github.ref == 'refs/heads/pre/rc'
(
github.event_name == 'push' &&
(
github.ref == 'refs/heads/main' ||
github.ref == 'refs/heads/alpha' ||
github.ref == 'refs/heads/beta' ||
github.ref == 'refs/heads/canary' ||
github.ref == 'refs/heads/pre/rc'
)
) ||
(
github.event_name == 'pull_request' &&
(
github.base_ref == 'main' ||
github.base_ref == 'alpha' ||
github.base_ref == 'beta' ||
github.base_ref == 'canary' ||
github.base_ref == 'pre/rc'
)
)
steps:
- name: Checkout
Expand Down

0 comments on commit 4ac1211

Please sign in to comment.