diff options
| author | Mark Otto <[email protected]> | 2020-05-01 01:22:10 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-01 11:22:10 +0300 |
| commit | f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5 (patch) | |
| tree | 0d805c234be511ce9a87c471f1cb08793ae05787 | |
| parent | e344ed44466d0155a96c3149f8b2d1c08f8196af (diff) | |
| download | bootstrap-f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5.tar.xz bootstrap-f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5.zip | |
v4: Add Release Drafter (#30701)
* Create release-drafter.yml
* Create release-notes.yml
| -rw-r--r-- | .github/release-drafter.yml | 40 | ||||
| -rw-r--r-- | .github/workflows/release-notes.yml | 14 |
2 files changed, 54 insertions, 0 deletions
diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 000000000..6b58375a7 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,40 @@ +name-template: 'v$NEXT_PATCH_VERSION' +tag-template: 'v$NEXT_PATCH_VERSION' +prerelease: true +exclude-labels: + - 'skip-changelog' +categories: + - title: '🚀 Features' + labels: + - 'new-feature' + - 'feature' + - 'enhancement' + - title: '🐛 Bug fixes' + labels: + - 'fix' + - 'bugfix' + - 'bug' + - title: '🎨 CSS' + labels: + - 'css' + - title: '☕️ JavaScript' + labels: + - 'js' + - title: '📖 Docs' + labels: + - 'docs' + - title: '🌎 Accessibility' + labels: + - 'accessibility' + - title: '🧰 Misc' + labels: + - 'build' + - 'meta' + - 'chore' + - title: '📦 Dependencies' + labels: + - 'dependencies' +change-template: '- #$NUMBER: $TITLE' +template: | + ## Changes + $CHANGES diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 000000000..9f0f4f8c1 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,14 @@ +name: Release notes + +on: + push: + branches: + - v4-dev + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
