Skip to content

Sync labels

Sync labels #950

Workflow file for this run

---
name: "Sync labels"
# yamllint disable-line rule:truthy
on:
push:
branches:
- master
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/timmo001/workflows/master/.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