mirror of https://github.com/winsw/winsw
Make release drafter run manually (#763)
parent
c19e48b943
commit
5a95c760a5
|
@ -1,5 +1,11 @@
|
|||
# https://docs.github.com/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
- package-ecosystem: "nuget"
|
||||
directory: "/"
|
||||
schedule:
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Configuration for Release Drafter: https://github.com/toolmantim/release-drafter
|
||||
# Configuration for Release Drafter: https://github.com/release-drafter/release-drafter
|
||||
|
||||
name-template: WinSW v$NEXT_PATCH_VERSION
|
||||
tag-template: v$NEXT_PATCH_VERSION
|
||||
# This repo follows the Semantic Versioning 2.0.0 approach: https://semver.org/
|
||||
|
||||
# This repo follows the Semantic Versioning 2.0.0 convention: https://semver.org/spec/v2.0.0.html
|
||||
version-template: $MAJOR.$MINOR.$PATCH
|
||||
|
||||
template: |
|
||||
<!-- Optional: add a release summary here -->
|
||||
$CHANGES
|
||||
template: $CHANGES
|
||||
|
||||
# Emoji reference: https://gitmoji.carloscuesta.me/
|
||||
categories:
|
||||
|
@ -14,18 +14,18 @@ categories:
|
|||
label: removed
|
||||
- title: ⚠️ Deprecated
|
||||
label: deprecated
|
||||
- title: ":tada: New features"
|
||||
- title: 🎉 New features
|
||||
label: new-feature
|
||||
- title: 🚀 Enhancements
|
||||
label: enhancement
|
||||
- title: 🐛 Bug Fixes
|
||||
- title: 🐛 Bug fixes
|
||||
label: bug
|
||||
- title: ":package: Packaging changes"
|
||||
- title: 📦 Packaging changes
|
||||
label: packaging
|
||||
- title: 📝 Documentation updates
|
||||
label: documentation
|
||||
# Default label used by Dependabot
|
||||
- title: ":arrow_up: Dependency updates"
|
||||
- title: ⬆️ Dependency updates
|
||||
label: dependencies
|
||||
- title: 👻 Maintenance
|
||||
labels:
|
||||
|
|
|
@ -1,16 +1,11 @@
|
|||
name: Release Management
|
||||
name: Changelog Management
|
||||
|
||||
on:
|
||||
push:
|
||||
# branches to consider in the event; optional, defaults to all
|
||||
branches:
|
||||
- master
|
||||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
update_draft_release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Drafts your next Release notes as Pull Requests are merged into "master"
|
||||
- uses: toolmantim/release-drafter@v5.11.0
|
||||
- uses: release-drafter/release-drafter@v5.13.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Reference in New Issue