Files
actions/.github/workflows/sync-label.yaml
blacksmith-sh[bot] 61ada6397e .github/workflows: Migrate workflows to Blacksmith runners (#9)
Migrate workflows to Blacksmith

Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com>
2025-09-27 08:12:29 +03:30

25 lines
541 B
YAML

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Sync labels
# Required permission on the caller workflow
# permissions:
# contents: read
# issues: write
on:
workflow_call:
jobs:
main:
name: Sync labels
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v5
- name: 🚀 Run Label Syncer
uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}