Skip to content

Commit 7c323d5

Browse files
jeffwidmanNishnha
authored andcommitted
Switch to monthly release cadence
We'd like to start releasing monthly so that we don't fall quite so far behind... based on past commit frequency, most of these releases will only contain merged :dependabot: PR's bumping our deps, but this way we find out quickly if a dep breaks our action.
1 parent 5c7b450 commit 7c323d5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
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)