Skip to content

Commit

Permalink
add labels workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
reece committed Feb 13, 2024
1 parent 71528b2 commit d55a301
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Sync labels
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- '.github/labels.yml'
- '.github/workflows/labels.yml'

permissions:
issues: write

jobs:
labels:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
sparse-checkout: .github/labels.yml

- uses: EndBug/label-sync@v2
with:
config-file: |
https://raw.githubusercontent.com/biocommons/.github/main/etc/labels.yml
.github/labels.yml
delete-other-labels: false

0 comments on commit d55a301

Please sign in to comment.