feat: Initial commit, empty from template.
This commit is contained in:
25
.github/workflows/label-sync.yaml
vendored
Normal file
25
.github/workflows/label-sync.yaml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
name: "Label Sync"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: ["main"]
|
||||
paths: [".github/labels.yaml"]
|
||||
|
||||
jobs:
|
||||
label-sync:
|
||||
name: Label Sync
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
issues: write
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
|
||||
- name: Sync Labels
|
||||
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3
|
||||
with:
|
||||
config-file: .github/labels.yaml
|
||||
delete-other-labels: true
|
||||
Reference in New Issue
Block a user