-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Workflow Sync Bot
committed
Jul 15, 2024
1 parent
194537f
commit d712ba9
Showing
9 changed files
with
556 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
- name: breaking | ||
color: "b60205" | ||
description: This change is not backwards compatible | ||
- name: bug | ||
color: "d93f0b" | ||
description: Something isn't working | ||
- name: documentation | ||
color: "0075ca" | ||
description: Improvements or additions to documentation | ||
- name: enhancement | ||
color: "0e8a16" | ||
description: New feature or request | ||
- name: feature | ||
color: "0e8a16" | ||
description: New feature or request | ||
- name: fix | ||
color: "d93f0b" | ||
description: Something isn't working | ||
- name: misc | ||
color: "#6B93D3" | ||
description: Miscellaneous task not covered by something else | ||
- name: no-changelog | ||
color: "cccccc" | ||
description: No entry should be added to the release notes and changelog | ||
- name: security | ||
color: "5319e7" | ||
description: Solving a security issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
version-template: '$MAJOR.$MINOR.$PATCH' | ||
change-title-escapes: '\<*_&' | ||
|
||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'breaking' | ||
- 'enhancement' | ||
- 'feature' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- 'fix' | ||
- 'security' | ||
- title: '📖 Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: '🧺 Miscellaneous' | ||
labels: | ||
- 'misc' | ||
|
||
version-resolver: | ||
major: | ||
labels: | ||
- 'breaking' | ||
minor: | ||
labels: | ||
- 'enhancement' | ||
- 'feature' | ||
patch: | ||
labels: | ||
- 'bug' | ||
- 'documentation' | ||
- 'fix' | ||
- 'security' | ||
default: 'minor' | ||
|
||
autolabeler: | ||
- label: 'documentation' | ||
body: | ||
- '/documentation/' | ||
branch: | ||
- '/docs\/.+/' | ||
title: | ||
- '/documentation/i' | ||
- '/docs/i' | ||
- label: 'bug' | ||
body: | ||
- '/bug/' | ||
branch: | ||
- '/bug\/.+/' | ||
- '/fix\/.+/' | ||
title: | ||
- '/bug/i' | ||
- '/fix/i' | ||
- label: 'feature' | ||
branch: | ||
- '/feature\/.+/' | ||
- '/enhancement\/.+/' | ||
title: | ||
- '/feature/i' | ||
- '/feat/i' | ||
- '/enhancement/i' | ||
- label: 'breaking' | ||
body: | ||
- '/breaking/' | ||
branch: | ||
- '/breaking\/.+/' | ||
title: | ||
- '/breaking/i' | ||
- '/major/i' | ||
|
||
exclude-contributors: | ||
- 'github-actions[bot]' | ||
|
||
exclude-labels: | ||
- 'no-changelog' | ||
|
||
template: | | ||
# What's Changed | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: label-synchronization | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths: | ||
- .github/labels.yaml | ||
- .github/workflows/label-sync.yaml | ||
|
||
permissions: | ||
# write permission is required to edit issue labels | ||
issues: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Synchronize labels | ||
uses: crazy-max/ghaction-github-labeler@v5 | ||
with: | ||
dry-run: false | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
skip-delete: false | ||
yaml-file: .github/labels.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: "pr-validation" | ||
|
||
on: | ||
pull_request: | ||
|
||
permissions: | ||
checks: write | ||
contents: read | ||
pull-requests: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
autolabeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: release-drafter/release-drafter@v6 | ||
with: | ||
config-name: release-drafter-config.yaml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
title-checker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
id: lint_pr_title | ||
with: | ||
types: | | ||
breaking | ||
bug | ||
docs | ||
documentation | ||
enhancement | ||
feat | ||
feature | ||
fix | ||
misc | ||
security | ||
requireScope: false | ||
ignoreLabels: | | ||
skip-changelog | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: marocchino/sticky-pull-request-comment@v2 | ||
# When the previous steps fails, the workflow would stop. By adding this | ||
# condition you can continue the execution with the populated error message. | ||
if: always() && (steps.lint_pr_title.outputs.error_message != null) | ||
with: | ||
header: pr-title-lint-error | ||
message: | | ||
Hey there and thank you for opening this pull request! 👋🏼 | ||
We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. | ||
Examples for valid PR titles: | ||
feat(ui): Add button component. | ||
fix: Correct typo. | ||
_type(scope): subject._ | ||
Adding a scope is optional | ||
Details: | ||
``` | ||
${{ steps.lint_pr_title.outputs.error_message }} | ||
``` | ||
# Delete a previous comment when the issue has been resolved | ||
- if: ${{ steps.lint_pr_title.outputs.error_message == null }} | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
header: pr-title-lint-error | ||
delete: true | ||
|
||
label-checker: | ||
needs: autolabeler | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: danielchabr/[email protected] | ||
id: lint_pr_labels | ||
with: | ||
hasSome: breaking,bug,documentation,enhancement,feature,fix,misc,security | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: marocchino/sticky-pull-request-comment@v2 | ||
# When the previous steps fails, the workflow would stop. By adding this | ||
# condition you can continue the execution with the populated error message. | ||
if: always() && (steps.lint_pr_labels.outputs.passed == false) | ||
with: | ||
header: pr-labels-lint-error | ||
message: | | ||
Hey there and thank you for opening this pull request! 👋🏼 | ||
The PR needs to have at least one of the following labels: breaking, bug, documentation, enhancement, feature, fix, misc, security. | ||
# Delete a previous comment when the issue has been resolved | ||
- if: ${{ steps.lint_pr_labels.outputs.passed != false }} | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
header: pr-labels-lint-error | ||
delete: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "release-drafter" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths-ignore: | ||
- .github/** | ||
- .pre-commit-config.yaml | ||
- CHANGELOG.md | ||
- CONTRIBUTING.md | ||
- LICENSE | ||
|
||
permissions: | ||
# write permission is required to create a github release | ||
contents: write | ||
|
||
jobs: | ||
draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: release-drafter/release-drafter@v6 | ||
with: | ||
publish: false | ||
prerelease: false | ||
config-name: release-drafter-config.yaml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.