Dependency Dashboard #5385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Automatically label issues depending on the content found in title and body. | |
# Rules are based on RegEx expressions and are defined in the `.github/labeler.yaml` file. | |
name: 'Issue Labeler' | |
# yamllint disable-line rule:truthy | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
permissions: | |
issues: write | |
contents: read | |
jobs: | |
label_issues: | |
runs-on: ubuntu-24.04 | |
permissions: | |
issues: write | |
steps: | |
- name: Label issues | |
uses: github/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
configuration-path: .github/labeler.yaml | |
enable-versioned-regex: 0 | |
include-title: 1 |