mirror of
https://github.com/ivuorinen/ivuorinen.git
synced 2026-03-18 16:02:55 +00:00
25 lines
509 B
YAML
25 lines
509 B
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
paths:
|
|
- ".github/labels.yml"
|
|
- ".github/workflows/labels.yml"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Run Labeler
|
|
uses: crazy-max/ghaction-github-labeler@v5
|
|
with:
|
|
dry-run: ${{ github.event_name == 'pull_request' }}
|