Merge pull request #884 from nla/release-please--branches--hotfix/2.1… #29
Workflow file for this run
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
# This workflow creates a release pull request whenever a change is pushed to 'main'. | |
# When the release pull request is merged into 'main', it will automatically create and tag a new | |
# release version. | |
name: Release automation from 'hotfix' branch | |
on: | |
push: | |
branches: [hotfix/2.11.2] | |
jobs: | |
release-please: | |
name: Create a new release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
default-branch: "hotfix/2.11.2" | |
release-type: ruby | |
package-name: nla-blacklight | |
bump-minor-pre-major: false | |
bump-patch-for-minor-pre-major: false | |
include-v-in-tag: false | |
changelog-types: >- | |
[ | |
{"type":"feat","section":"Features","hidden":false}, | |
{"type":"fix","section":"Bug Fixes","hidden":false}, | |
{"type":"perf","section":"Performance Improvements","hidden":false}, | |
{"type":"revert","section":"Reverts","hidden":false}, | |
{"type":"docs","section":"Documentation","hidden":false}, | |
{"type":"style","section":"Styles","hidden":false}, | |
{"type":"chore","section":"Miscellaneous","hidden":false}, | |
{"type":"refactor","section":"Code Refactoring","hidden":false}, | |
{"type":"test","section":"Tests","hidden":false}, | |
{"type":"build","section":"Build System","hidden":false}, | |
{"type":"ci","section":"Continuous Integration","hidden":false} | |
] | |
version-file: "config/application.rb" |