Now we can add multiple title regexes for a PR and the labeler will automatically tag the PR with the appropriate labels. This will be useful when generated the release notes in a categorized fashion.
16 lines
277 B
YAML
16 lines
277 B
YAML
name: Label PRs based on title
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [release]
|
|
types: [opened, reopened, edited]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: appsmithorg/labeler@master
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|