mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-29 21:30:18 +00:00
Mostly adding a descriptive frontmatter to workflow files. Also address some formatting and outdated artifacts No functional changes outside of [d5457c3](d5457c39ee), [90708a0](90708a0d99), and [338c82d](338c82d21e)
26 lines
585 B
YAML
26 lines
585 B
YAML
# Label PRs based on their titles.
|
|
#
|
|
# See `.github/pr-title-labeler.yml` to see rules for each label/title pattern.
|
|
|
|
name: "🏷️ PR Title Labeler"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, edited]
|
|
|
|
jobs:
|
|
pr-title-labeler:
|
|
name: 'label'
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Label PR based on title
|
|
uses: grafana/pr-labeler-action@v0.1.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
configuration-path: .github/pr-title-labeler.yml
|