Skip to content

Commit

Permalink
ci: add ci-* to GitHub actions config
Browse files Browse the repository at this point in the history
This automatically runs full CI for any branch prefixed with `ci-`. This makes it easier to manually run CI prior to opening a pull request without having to update any files and make sure they aren't accidentally included in the final PR.

(cherry picked from commit 524fc0c)
  • Loading branch information
dgp1130 authored and alan-agius4 committed Jan 4, 2024
1 parent 03a1dc0 commit 90ad47d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main
- '[0-9]+.[0-9]+.x'

# Developers can make one-off pushes to `ci-*` branches to manually trigger full CI
# prior to opening a pull request.
- ci-*
pull_request:
types: [opened, synchronize, reopened]

Expand Down

0 comments on commit 90ad47d

Please sign in to comment.