Skip to content

Commit f149756

Browse files
authored
enable release-drafter (#166)
1 parent 0f45901 commit f149756

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

.github/release-drafter.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
_extends: .github
2+
name-template: v$NEXT_MINOR_VERSION 🌈
3+
tag-template: workflow-durable-task-step-$NEXT_MINOR_VERSION
4+

.github/workflows/release-drafter.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Automates creation of Release Drafts using Release Drafter
2+
# More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
3+
4+
on:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
update_release_draft:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Drafts your next Release notes as Pull Requests are merged into "master"
14+
- uses: release-drafter/[email protected]
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
* For newer versions, see [GitHub Releases](https://github.com/jenkinsci/workflow-durable-task-step-plugin/releases)
4+
35
## 2.39
46

57
Release date: 2021-05-10

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
Pipeline: Nodes and Processes
22
===
33

4-
[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/workflow-durable-task-step)](https://plugins.jenkins.io/workflow-durable-task-step)
5-
[![Changelog](https://img.shields.io/github/v/tag/jenkinsci/workflow-durable-task-step-plugin?label=changelog)](https://github.com/jenkinsci/workflow-durable-task-step-plugin/blob/master/CHANGELOG.md)
6-
[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/workflow-durable-task-step?color=blue)](https://plugins.jenkins.io/workflow-durable-task-step)
7-
84
A component of [Pipeline Plugin](https://wiki.jenkins.io/display/JENKINS/Pipeline+Plugin).
95

106
Pipeline steps locking agents and workspaces, and running external processes that may survive a Jenkins restart or agent reconnection.
117

128
## Documentation
139

14-
* [Changelog](https://github.com/jenkinsci/workflow-durable-task-step-plugin/blob/master/CHANGELOG.md)
10+
* [Changelog](https://github.com/jenkinsci/workflow-durable-task-step-plugin/releases)
1511

1612
## License
1713

0 commit comments

Comments
 (0)