Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# The labels in this file are automatically synced with the repository
# using the micnncim/action-label-syncer action.
---
- name: C-dependency
color: 1abc9c
description: "Category: Dependency"
- name: PR-block
color: 3498db
description: "Pull Request: Do not merge"
- name: PR-merge
color: 3498db
description: "Pull Request: Merge when ready"
- name: bug
color: ee0701
description: "Bug Report"
- name: triage
color: 0c9cf2
description: "Needs Triaging"
- name: feature
color: dc8b10
description: "Feature Request"
- name: invalid
color: e6e6e6
description: "Invalid Issue"
- name: duplicate
color: 4e6ca2
description: "Duplicate Issue"
- name: patch
color: 834dd1
description: "Change leading to a patch level version bump"
- name: minor
color: 764ab5
description: "Change leading to a minor level version bump"
- name: major
color: 6b3bad
description: "A (breaking) change leading to a major version bump"
4 changes: 3 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ categories:
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
labels:
- 'chore'
- 'dependencies'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/repository.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Repository

on:
push:
branches:
- master
paths:
- .github/labels.yml

jobs:
labels:
name: Labels
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Sync labels
uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yml