mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2025-01-09 19:47:59 +01:00
Add release drafter (#57)
This commit is contained in:
parent
ff10a20bce
commit
889351745d
27
.github/release-drafter.yml
vendored
Normal file
27
.github/release-drafter.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name-template: "$RESOLVED_VERSION"
|
||||
tag-template: "v$RESOLVED_VERSION"
|
||||
categories:
|
||||
- title: "Breaking Changes"
|
||||
label: "breaking-change"
|
||||
|
||||
version-resolver:
|
||||
major:
|
||||
labels:
|
||||
- "major"
|
||||
- "breaking-change"
|
||||
minor:
|
||||
labels:
|
||||
- "minor"
|
||||
- "new-feature"
|
||||
patch:
|
||||
labels:
|
||||
- "bugfix"
|
||||
- "dependencies"
|
||||
- "documentation"
|
||||
- "enhancement"
|
||||
default: patch
|
||||
|
||||
template: |
|
||||
## What's Changed
|
||||
|
||||
$CHANGES
|
37
.github/workflows/release-drafter.yml
vendored
Normal file
37
.github/workflows/release-drafter.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
name: Release Drafter
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
update_release_draft:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: release-drafter/release-drafter@v5
|
||||
id: release-draft
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Update version number in setup.py
|
||||
- uses: actions/checkout@v2
|
||||
- name: Calculate version
|
||||
id: version
|
||||
run: |
|
||||
tag="${{ steps.release-draft.outputs.tag_name }}"
|
||||
echo "::set-output name=version::${tag:1}"
|
||||
|
||||
- name: Set setup.py version
|
||||
run: |
|
||||
sed -i "s/VERSION = .*/VERSION = \"${{ steps.version.outputs.version }}\"/g" setup.py
|
||||
# github actions email from here: https://github.community/t/github-actions-bot-email-address/17204
|
||||
- name: Commit changes
|
||||
run: |
|
||||
if ! git diff --quiet; then
|
||||
git config --global user.name "github-actions[bot]"
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git commit -am "Bump version to ${{ steps.version.outputs.version }}"
|
||||
git push
|
||||
fi
|
Loading…
Reference in New Issue
Block a user