Initialize the LangChain4j GitHub Bot config files (#1329)

As discussed :).
This commit is contained in:
Guillaume Smet 2024-06-20 12:21:56 +02:00 committed by GitHub
parent 3084c5827f
commit f098043946
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 40 additions and 0 deletions

13
.github/langchain4j-github-bot.yml vendored Normal file
View File

@ -0,0 +1,13 @@
---
# The format of this file is documented here:
# https://github.com/langchain4j/langchain4j-github-bot
features: [TRIAGE_ISSUES_AND_PULL_REQUESTS]
triage:
rules:
- id: azure
labels: [Azure]
title: "azure"
notify: [jdubois, agoncal]
notifyInPullRequest: true
files:
- '*-azure-*/**'

View File

@ -0,0 +1,22 @@
name: langchain4j-github-bot.yml lint
on:
push:
paths:
- '.github/langchain4j-github-bot.yml'
pull_request:
paths:
- '.github/langchain4j-github-bot.yml'
jobs:
lint:
name: "langchain4j-github-bot.yml validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install yamllint
shell: bash
run: sudo apt-get install -y yamllint
- name: run yamllint for langchain4j-github-bot.yml
shell: bash
run: yamllint -c .github/yamllint.conf .github/langchain4j-github-bot.yml

5
.github/yamllint.conf vendored Normal file
View File

@ -0,0 +1,5 @@
extends: default
rules:
line-length: disable
commas: disable