Skip to content
Merged
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
18 changes: 16 additions & 2 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
name: Manage Labels
on:
workflow_dispatch:
push:
branches:
- develop
paths:
- "/.github/labels.json"

jobs:
labels:
export:
runs-on: ubuntu-latest

steps:
- id: export
- id: backup
name: Export Labels to Workflow Artifacts
uses: EndBug/export-label-config@v1

sync:
needs: export
runs-on: ubuntu-latest

steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4

- id: sync
name: Apply Labels from File
uses: EndBug/label-sync@v2
Expand Down