mirror of
https://github.com/ivuorinen/cinode-api.git
synced 2026-01-26 11:14:01 +00:00
30 lines
525 B
YAML
30 lines
525 B
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Sync labels
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/labels.yml
|
|
schedule:
|
|
- cron: '34 5 * * *'
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
contents: read
|
|
statuses: read
|
|
|
|
jobs:
|
|
SyncLabels:
|
|
uses: ivuorinen/.github/.github/workflows/sync-labels.yml@main
|
|
permissions:
|
|
issues: write
|
|
contents: read
|
|
statuses: read
|
|
|