Skip to content

Commit 2b1cfac

Browse files
ci: fix bump pattern for daily release workflow (#232)
* ci: fix bump pattern for daily release workflow bump pattern needs to bump the plugin but not the zenoh deps during daily release workflow runs * chore: disable scheduled runs zenoh-plugin-ros1 is not supported anymore
1 parent 16ebad5 commit 2b1cfac

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ on:
1818
branches: ["**"]
1919
pull_request:
2020
branches: ["**"]
21-
schedule:
22-
- cron: "0 6 * * 1-5"
2321

2422
jobs:
2523
check:

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
name: Release
1515

1616
on:
17-
schedule:
18-
- cron: "0 0 * * 1-5"
1917
workflow_dispatch:
2018
inputs:
2119
live-run:
@@ -45,8 +43,12 @@ jobs:
4543
live-run: ${{ inputs.live-run || false }}
4644
version: ${{ inputs.version }}
4745
branch: ${{ inputs.branch }}
48-
bump-deps-version: ${{ inputs.zenoh-version }}
49-
bump-deps-pattern: ${{ inputs.zenoh-version && 'zenoh.*' || '^$' }}
46+
bump-deps-version: |
47+
${{ inputs.version }}
48+
${{ inputs.zenoh-version }}
49+
bump-deps-pattern: |
50+
^zenoh-plugin-ros1$
51+
${{ inputs.zenoh-version && 'zenoh.*' || '' }}
5052
bump-deps-branch: ${{ inputs.zenoh-version && format('release/{0}', inputs.zenoh-version) || '' }}
5153
secrets: inherit
5254

0 commit comments

Comments
 (0)