-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1475 from gsmet/bot-triage
Enable triaging by the bot
- Loading branch information
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-*/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
extends: default | ||
|
||
rules: | ||
line-length: disable | ||
commas: disable |