Skip to content

Commit

Permalink
Add: Support setting "calendar release" label for release type calendar
Browse files Browse the repository at this point in the history
Cloud uses this label for creating calendar releases. Therefore the
release-type action should support it too.
  • Loading branch information
bjoernricks committed Mar 25, 2024
1 parent 5dca867 commit dc39d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-type/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
run: |
echo "RELEASE_TYPE=beta" >> $GITHUB_ENV
shell: bash
- if: contains(github.event.pull_request.labels.*.name, 'make release')
- if: contains(github.event.pull_request.labels.*.name, 'make release') || contains(github.event.pull_request.labels.*.name, 'calendar release')
run: |
echo "RELEASE_TYPE=calendar" >> $GITHUB_ENV
shell: bash
Expand Down

0 comments on commit dc39d51

Please sign in to comment.