Skip to content

Commit

Permalink
chore: created local '.github/workflows/labeler.yml' from remote 'sha…
Browse files Browse the repository at this point in the history
…red-files/github-actions/labeler.yml'
  • Loading branch information
github-actions[bot] committed Jan 2, 2025
1 parent 3278c21 commit 09b6935
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Labeler

# Labeler manage labels on your GitHub repository based on a YAML file.

on:
push:
branches:
- 'main'
paths:
- '.github/labels.yml'
- '.github/workflows/labeler.yml'
pull_request:
paths:
- '.github/labels.yml'
- '.github/workflows/labeler.yml'

jobs:
labeler:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
dry-run: ${{ github.event_name == 'pull_request' }}
exclude: |
help*
*issue

0 comments on commit 09b6935

Please sign in to comment.