mirror of
https://github.com/ivuorinen/.github.git
synced 2026-01-26 11:23:57 +00:00
32 lines
674 B
YAML
32 lines
674 B
YAML
---
|
|
name: Sync labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/labels.yml
|
|
schedule:
|
|
- cron: "34 5 * * *"
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
labels:
|
|
name: ♻️ Sync labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: ⤵️ Download latest labels definitions
|
|
run: |
|
|
curl -s --retry 5 \
|
|
"https://raw.githubusercontent.com/ivuorinen/.github/main/.github/labels.yml" \
|
|
> labels.yml
|
|
- name: 🚀 Run Label Syncer
|
|
uses: micnncim/action-label-syncer@v1.3.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
manifest: labels.yml
|