chore: Add wildcard to support triggering for release pipelines (#5879)

This change adds a wildcard to the release branch in the CI pipeline spec. Namely, after adopting an improved release process, with release branches that now look like release-X.Y, the trigger pipeline was no longer running as it only searched for an exact match to release.
This commit is contained in:
Bart
2025-10-10 12:22:42 -04:00
committed by Bronek Kozicki
parent 220ab26225
commit 4f076cb955

View File

@@ -9,9 +9,9 @@ name: Trigger
on: on:
push: push:
branches: branches:
- develop - "develop"
- release - "release*"
- master - "master"
paths: paths:
# These paths are unique to `on-trigger.yml`. # These paths are unique to `on-trigger.yml`.
- ".github/workflows/reusable-check-missing-commits.yml" - ".github/workflows/reusable-check-missing-commits.yml"