Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable triaging by the bot #1475

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading