Skip to content

Commit 460a38e

Browse files
committed
⚡️Add Sync Labels workflows
1 parent 8730dac commit 460a38e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/sync_labels.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ♻️ Sync Labels
2+
3+
on:
4+
push:
5+
paths:
6+
- .github/labels.yml
7+
branches:
8+
- main
9+
workflow_dispatch:
10+
11+
jobs:
12+
labels:
13+
name: ♻️ Sync labels
14+
runs-on: ubuntu-20.04
15+
permissions:
16+
issues: write
17+
contents: read
18+
steps:
19+
- name: ⤵️ Check out code from GitHub
20+
uses: actions/checkout@v4
21+
22+
- name: 🚀 Run Label Sync
23+
uses: srealmoreno/label-sync-action@v2
24+
with:
25+
config-file: https://raw.githubusercontent.com/Flutter-Journey/.github/main/.github/labels.yml

0 commit comments

Comments
 (0)