Skip to content

Sync Labels

Sync Labels #209

Workflow file for this run

name: Sync Labels
on:
push:
branches:
- master
paths:
- .github/workflows/sync-labels.yml
- .github/labels.yml
schedule:
- cron: '0 0 * * 4'
jobs:
sync_labels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Checkout tools repo
uses: actions/[email protected]
with:
repository: RocketSurgeonsGuild/.github
path: .rsg
- name: merge files
uses: RocketSurgeonsGuild/actions/[email protected]
with:
files: '.rsg/.github/labels.yml,.github/labels.yml'
output: .github/labels.yml
- name: Run Labeler
if: success()
uses: crazy-max/[email protected]
with:
yaml_file: .github/labels.yml
skip_delete: false
dry_run: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}