Skip to content

Commit

Permalink
Schränke Labels nicht ein
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Jun 17, 2022
1 parent a97d017 commit 591df32
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/create-labels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authoriz
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"changelog:fixed :+1:","description":"Korrigiert","color":"ffffff"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"changelog:removed :wastebasket:","description":"Entfernt","color":"ffffff"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"changelog:security :shield:","description":"Sicherheit","color":"ffffff"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"major","description":"Gravierende Änderung mit Kompatibilitätsbruch","color":"5319E7"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"minor","description":"Rückwärtskompatible Ergänzung / Erweiterung","color":"006B75"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"patch","description":"Geringfügige Korrektur ohne Risiko","color":"FBCA04"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"version:major","description":"Gravierende Änderung mit Kompatibilitätsbruch","color":"5319E7"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"version:minor","description":"Rückwärtskompatible Ergänzung / Erweiterung","color":"006B75"}'
curl -f -X POST https://api.github.com/repos/$USERNAME/$REPO/labels -H "Authorization: token $GH_TOKEN" -d '{"name":"version:patch","description":"Geringfügige Korrektur ohne Risiko","color":"FBCA04"}'
26 changes: 13 additions & 13 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@ change-title-escapes: '\<*_&'
version-resolver:
major:
labels:
- 'major'
- 'version:major'
minor:
labels:
- 'minor'
- 'version:minor'
patch:
labels:
- 'patch'
- 'version:patch'
default: patch
include-labels:
- 'changelog:added :heavy_plus_sign:'
- 'changelog:changed :pencil2:'
- 'changelog:deprecated :x:'
- 'changelog:fixed :+1:'
- 'changelog:removed :wastebasket:'
- 'changelog:security :shield:'
- 'major'
- 'minor'
- 'patch'
#include-labels:
# - 'changelog:added :heavy_plus_sign:'
# - 'changelog:changed :pencil2:'
# - 'changelog:deprecated :x:'
# - 'changelog:fixed :+1:'
# - 'changelog:removed :wastebasket:'
# - 'changelog:security :shield:'
# - 'major'
# - 'minor'
# - 'patch'
template: |
## Änderungen
Expand Down

0 comments on commit 591df32

Please sign in to comment.