Skip to content

Commit

Permalink
workflows/ci.yml fix push branch regex (#1445)
Browse files Browse the repository at this point in the history
The current pattern matches the following:
"sdf", "sdf0", "sdf1", ..., "sdf8", "sdf9"
of which "sdf" is incorrect, and only "sdf9"
is currently supported. This updates the pattern
to match single digits "sdf1" - "sdf9" and double
digits "sdf10" to "sdf99".

Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters authored Jun 27, 2024
1 parent f05f4e7 commit d428889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- 'sdf[0-9]?'
- 'sdf[1-9]?[0-9]'
- 'main'

jobs:
Expand Down

0 comments on commit d428889

Please sign in to comment.