Skip to content

Commit

Permalink
Merge pull request #1862 from rubocop/improve-release-notes-workflow
Browse files Browse the repository at this point in the history
When creating a release, automatically add a title
  • Loading branch information
ydah committed Apr 4, 2024
2 parents 7a9627c + 19e8f1b commit 210f5b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Expand Up @@ -23,7 +23,9 @@ jobs:
GH_TOKEN: ${{ github.token }}
run: |
bundle exec rake create_release_notes
gh release create $(git tag --points-at @) --notes-file relnotes.md
gh release create $(git tag --points-at @) \
--title "RuboCop RSpec $(git tag --points-at @)" \
--notes-file relnotes.md \
- name: Replace version in Antora config
run: |
sed -i 's/version:.*$/version: ~/' docs/antora.yml
Expand Down

0 comments on commit 210f5b1

Please sign in to comment.