Skip to content

Commit

Permalink
Enable triaging by the bot
Browse files Browse the repository at this point in the history
Enabled it for Amazon Services as requested by Sébastien.
  • Loading branch information
gsmet committed Nov 21, 2024
1 parent b45cad4 commit a945603
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/quarkus-github-bot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
---
# The format of this file is documented here:
# https://github.com/quarkusio/quarkus-bot#triage-issues
features: [ANALYZE_WORKFLOW_RUN_RESULTS]
features: [ANALYZE_WORKFLOW_RUN_RESULTS,TRIAGE_ISSUES_AND_PULL_REQUESTS,SET_AREA_LABEL_COLOR]
workflowRunAnalysis:
workflows: ["Pull Request Build - development"]
triage:
rules:
- id: amazon
labels: [area/amazon-services]
title: "amazon"
notify: [scrocquesel]
notifyInPullRequest: true
files:
- 'amazon-*/**'
22 changes: 22 additions & 0 deletions .github/workflows/quarkus-github-bot-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: quarkus-github-bot.yml lint

on:
push:
paths:
- '.github/quarkus-github-bot.yml'
pull_request:
paths:
- '.github/quarkus-github-bot.yml'

jobs:
lint:
name: "quarkus-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 quarkus-github-bot.yml
shell: bash
run: yamllint -c .github/yamllint.conf .github/quarkus-github-bot.yml
5 changes: 5 additions & 0 deletions .github/yamllint.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extends: default

rules:
line-length: disable
commas: disable

0 comments on commit a945603

Please sign in to comment.