Skip to content

Commit adb069c

Browse files
committed
ci: main into dev
1 parent 6c80242 commit adb069c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/prepare_dev_for_next_release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Prepare dev branch for next release
33
on:
44
push:
55
branches: [main]
6-
paths:
7-
- 'package.json'
86

97
permissions:
108
contents: write
@@ -13,7 +11,7 @@ jobs:
1311
update-pods:
1412
name: Update Podfile.lock after release
1513
runs-on: macos-latest
16-
if: startsWith(github.event.head_commit.message, 'release:')
14+
if: contains(join(github.event.commits.*.message, ' '), 'release')
1715
env:
1816
XCODE_VERSION: latest-stable
1917

@@ -50,7 +48,7 @@ jobs:
5048
name: Merge main into dev
5149
runs-on: ubuntu-latest
5250
needs: update-pods
53-
if: startsWith(github.event.head_commit.message, 'release:')
51+
if: contains(join(github.event.commits.*.message, ' '), 'release')
5452
steps:
5553
- name: Checkout
5654
uses: actions/[email protected]

0 commit comments

Comments
 (0)