-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5deb888
commit a2a74e6
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# **what?** | ||
# This workflow will take the new version number to bump to. With that | ||
# it will run versionbump to update the version number everywhere in the | ||
# code base and then run changie to create the corresponding changelog. | ||
# A PR will be created with the changes that can be reviewed before committing. | ||
|
||
# **why?** | ||
# This is to aid in releasing dbt and making sure we have updated | ||
# the version in all places and generated the changelog. | ||
|
||
# **when?** | ||
# This is triggered manually | ||
|
||
name: Version Bump | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version_number: | ||
description: 'The version number to bump to (ex. 1.2.0, 1.3.0b1)' | ||
required: true | ||
|
||
jobs: | ||
version_bump_and_changie: | ||
uses: dbt-labs/actions/.github/workflows/version-bump.yml@main | ||
with: | ||
version_number: ${{ inputs.version_number }} | ||
secrets: inherit # ok since what we are calling is internally maintained |