mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2024-11-13 04:04:45 +08:00
21 lines
413 B
YAML
Executable file
21 lines
413 B
YAML
Executable file
---
|
|
name: Sync labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/labels.yml
|
|
|
|
jobs:
|
|
labels:
|
|
name: ♻️ Sync labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: ⤵️ Check out code from GitHub
|
|
uses: actions/checkout@v2
|
|
- name: 🚀 Run Label Syncer
|
|
uses: micnncim/action-label-syncer@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|