Browse Source

Credit contributors for forward-ported contributions

This commit upgrades github-changelog-generator to 0.0.5 and adds
configuration for forward-port and back-port labels so that
contributors get credit for contributions in the release notes for
each release that includes the contribution.

Fixes gh-24135
pull/25129/head
Scott Frederick 5 years ago
parent
commit
b14847d0e1
  1. 6
      ci/config/changelog-generator.yml
  2. 2
      ci/tasks/generate-changelog.yml

6
ci/config/changelog-generator.yml

@ -15,3 +15,9 @@ changelog:
sort: "title" sort: "title"
labels: labels:
- "type: dependency-upgrade" - "type: dependency-upgrade"
issues:
ports:
- label: "status: forward-port"
bodyExpression: 'Forward port of issue #(\d+).*'
- label: "status: back-port"
bodyExpression: 'Back port of issue #(\d+).*'

2
ci/tasks/generate-changelog.yml

@ -4,7 +4,7 @@ image_resource:
type: docker-image type: docker-image
source: source:
repository: springio/github-changelog-generator repository: springio/github-changelog-generator
tag: '0.0.4' tag: '0.0.5'
inputs: inputs:
- name: git-repo - name: git-repo
- name: version - name: version

Loading…
Cancel
Save