Skip to content

refactor: finish pydantic v2 migration #4

refactor: finish pydantic v2 migration

refactor: finish pydantic v2 migration #4

Workflow file for this run

---
# Docs: https://github.com/marketplace/actions/github-labeler
name: github_labeler
# Will only be run each push or PR merge to the main branch
"on":
push:
branches: [main]
paths: [.github/labels.yml, .github/workflows/labeler.yml]
workflow_dispatch: null # For manual runs
permissions:
# Issues and related comments, assignees, labels, and milestones.
issues: write
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
skip-delete: false
dry-run: false