Skip to content

deps(github-actions): update mirceanton/reusable-workflows action ( v3.4.21 → v3.4.22 ) #870

deps(github-actions): update mirceanton/reusable-workflows action ( v3.4.21 → v3.4.22 )

deps(github-actions): update mirceanton/reusable-workflows action ( v3.4.21 → v3.4.22 ) #870

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Label Sync
on:
# Manual Trigger
workflow_dispatch:
inputs:
dry-run:
description: Dry Run
default: true
required: false
type: boolean
# Dry Run on any PR that changes the labels config or the workflow
pull_request:
paths:
- .github/workflows/label-sync.yaml
- .github/labels.yaml
# "Wet" Run on any push to the main branch that changes the labels config or the workflow
push:
branches: ["main", "master"]
paths:
- .github/workflows/label-sync.yaml
- .github/labels.yaml
# "Wet" Run hourly
schedule:
- cron: "0 * * * *"
jobs:
label-sync:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-label-sync.yaml@b32156dbd9442d9e9a80a24b7b25f0d97b6dcb52 # v3.4.22
secrets: inherit
with:
dry-run: ${{ inputs.dry-run || github.event_name == 'pull_request' }}
config-file: .github/labels.yaml