File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 40
40
run : |
41
41
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
42
42
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
43
- if [[ \
44
- "${{ github.event_name }}" != "create" || \
45
- "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
43
+ if [[
44
+ "${{ github.event_name }}" != "create" ||
45
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX
46
46
]]; then
47
47
# Run the other jobs.
48
48
RESULT="true"
Original file line number Diff line number Diff line change 48
48
run : |
49
49
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
50
50
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
51
- if [[ \
52
- "${{ github.event_name }}" != "create" || \
53
- "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
51
+ if [[
52
+ "${{ github.event_name }}" != "create" ||
53
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX
54
54
]]; then
55
55
# Run the other jobs.
56
56
RESULT="true"
Original file line number Diff line number Diff line change 48
48
run : |
49
49
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
50
50
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
51
- if [[ \
52
- "${{ github.event_name }}" != "create" || \
53
- "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
51
+ if [[
52
+ "${{ github.event_name }}" != "create" ||
53
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX
54
54
]]; then
55
55
# Run the other jobs.
56
56
RESULT="true"
You can’t perform that action at this time.
0 commit comments