mirror of
https://github.com/redis/go-redis.git
synced 2025-07-31 05:04:23 +03:00
Adding the release drafter, for release note generation (#2368)
This commit is contained in:
11
.github/workflows/commitlint.yml
vendored
11
.github/workflows/commitlint.yml
vendored
@ -1,11 +0,0 @@
|
||||
name: Lint Commit Messages
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
commitlint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: wagoid/commitlint-github-action@v5
|
24
.github/workflows/release-drafter.yml
vendored
Normal file
24
.github/workflows/release-drafter.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: Release Drafter
|
||||
|
||||
on:
|
||||
push:
|
||||
# branches to consider in the event; optional, defaults to all
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions: {}
|
||||
jobs:
|
||||
update_release_draft:
|
||||
permissions:
|
||||
pull-requests: write # to add label to PR (release-drafter/release-drafter)
|
||||
contents: write # to create a github release (release-drafter/release-drafter)
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Drafts your next Release notes as Pull Requests are merged into "master"
|
||||
- uses: release-drafter/release-drafter@v5
|
||||
with:
|
||||
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
|
||||
config-name: release-drafter-config.yml
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Reference in New Issue
Block a user