Skip to content

Commit 8de9351

Browse files
committed
Enable triaging by the bot
Enabled it for Amazon Services as requested by Sébastien.
1 parent 04052ee commit 8de9351

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

.github/quarkus-github-bot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
---
22
# The format of this file is documented here:
33
# https://github.com/quarkusio/quarkus-bot#triage-issues
4-
features: [ANALYZE_WORKFLOW_RUN_RESULTS]
4+
features: [ANALYZE_WORKFLOW_RUN_RESULTS,TRIAGE_ISSUES_AND_PULL_REQUESTS,SET_AREA_LABEL_COLOR]
55
workflowRunAnalysis:
66
workflows: ["Pull Request Build - development"]
7+
triage:
8+
rules:
9+
- id: amazon
10+
labels: [area/amazon-services]
11+
title: "amazon"
12+
notify: [scrocquesel]
13+
notifyInPullRequest: true
14+
files:
15+
- 'amazon-*/**'
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: quarkus-github-bot.yml lint
2+
3+
on:
4+
push:
5+
paths:
6+
- '.github/quarkus-github-bot.yml'
7+
pull_request:
8+
paths:
9+
- '.github/quarkus-github-bot.yml'
10+
11+
jobs:
12+
lint:
13+
name: "quarkus-github-bot.yml validation"
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: install yamllint
18+
shell: bash
19+
run: sudo apt-get install -y yamllint
20+
- name: run yamllint for quarkus-github-bot.yml
21+
shell: bash
22+
run: yamllint -c .github/yamllint.conf .github/quarkus-github-bot.yml

.github/yamllint.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
extends: default
2+
3+
rules:
4+
line-length: disable
5+
commas: disable

0 commit comments

Comments
 (0)