Skip to content

Commit d19e2f3

Browse files
committed
ci: fix problems
1 parent 676483c commit d19e2f3

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/mainline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212

1313
jobs:
1414
prepare:
15-
uses: .github/workflows/mainline-prepare.yml
15+
uses: ./.github/workflows/mainline-prepare.yml
1616

1717
package:
1818
needs: prepare
19-
uses: .github/workflows/mainline-compile.yml
19+
uses: ./.github/workflows/mainline-compile.yml

.github/workflows/version-increment.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
- increment: major
2525
marker: '[ci-major-increase]'
2626

27-
if: contains(github.event.head_commit.message, matrix.marker)
27+
if: >
28+
contains(github.event.head_commit.message, '[ci-patch-increase]') ||
29+
contains(github.event.head_commit.message, '[ci-minor-increase]') ||
30+
contains(github.event.head_commit.message, '[ci-major-increase]')
2831
2932
steps:
3033
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)