Skip to content

Commit 76b7fe9

Browse files
authored
Merge pull request #509 from dependabot/switch-to-monthly-release-cadence
Switch to monthly release cadence
2 parents 5c7b450 + 7c323d5 commit 76b7fe9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release-bump-version.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Release - Bump Version
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
4+
schedule:
5+
- cron: '0 0 1 * *'
46
workflow_dispatch:
57
inputs:
68
version_type:
@@ -36,8 +38,7 @@ jobs:
3638
node-version-file: .nvmrc
3739

3840
- name: Bump the version
39-
# Currently we don't run via `schedule` trigger since this repo isn't active enough.
40-
# However, if that ever changes, it will run with no inputs, so version_type will default to 'minor'
41+
# Cron runs with no inputs, so version_type will default to 'minor'
4142
run: |
4243
NEW_VERSION=$(bin/bump-version ${{ github.event.inputs.version_type || 'minor' }})
4344
echo "New version is: $NEW_VERSION"

0 commit comments

Comments
 (0)