Skip to content

feat: initial commit #2

feat: initial commit

feat: initial commit #2

Workflow file for this run

name: Update Labels
on:
push:
branches:
- main
paths:
- '.github/**/labels.yml'
workflow_dispatch:
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Update labels
if: success()
uses: crazy-max/ghaction-github-labeler@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
skip-delete: false
dry-run: false