Skip to content

Create Repository Labels #233

Create Repository Labels

Create Repository Labels #233

Workflow file for this run

name: Create Repository Labels
on:
push:
branches:
- main
- master
- devel
paths:
- .github/labels.yml
- .github/workflows/labeler.yml
pull_request:
branches:
- main
- master
- devel
paths:
- .github/labels.yaml
- .github/workflows/labeler.yml
schedule:
- cron: "0 0 * * TUE"
jobs:
labels:
name: Sycnchronize repository labels
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/[email protected]
- name: Sync GitHub Issue Labels
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.MCKIT_GITHUB_TOKEN }}
skip-delete: true
dry-run: ${{ github.ref != 'refs/heads/master' }}