Skip to content

Commit 7e23612

Browse files
committed
Added Probot configs
1 parent d43875f commit 7e23612

File tree

4 files changed

+76
-0
lines changed

4 files changed

+76
-0
lines changed

.github/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Configuration for request-info - https://github.com/behaviorbot/request-info
2+
3+
# *Required* Comment to reply with
4+
requestInfoReplyComment: >
5+
We would appreciate it if you could provide us with more info about this issue/pr!
6+
7+
# *OPTIONAL* default titles to check against for lack of descriptiveness
8+
# MUST BE ALL LOWERCASE
9+
requestInfoDefaultTitles:
10+
- update readme.md
11+
- updates
12+
13+
# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given
14+
requestInfoLabelToAdd: needs-more-info

.github/release-drafter.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name-template: "v$RESOLVED_VERSION 🌈"
2+
tag-template: "v$RESOLVED_VERSION"
3+
categories:
4+
- title: "🚀 Features"
5+
labels:
6+
- "feature"
7+
- "enhancement"
8+
- title: "🐛 Bug Fixes"
9+
labels:
10+
- "fix"
11+
- "bugfix"
12+
- "bug"
13+
- title: "🧰 Maintenance"
14+
label: "chore"
15+
- title: "🧺 Miscellaneous" #Everything except ABAP
16+
label: "misc"
17+
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
18+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
19+
version-resolver:
20+
major:
21+
labels:
22+
- "major"
23+
minor:
24+
labels:
25+
- "minor"
26+
patch:
27+
labels:
28+
- "patch"
29+
default: patch
30+
template: |
31+
## Changes
32+
$CHANGES

.github/settings.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
2+
3+
repository:
4+
# See https://developer.github.com/v3/repos/#edit for all available settings.
5+
6+
# The name of the repository. Changing this will rename the repository
7+
name: ansible-rabbitmq
8+
9+
# A short description of the repository that will show up on GitHub
10+
description: Ansible role to install/configure RabbitMQ
11+
12+
# A comma-separated list of topics to set on the repository
13+
topics: ansible, ansible-role

.github/workflows/release-drafter.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- main
8+
- master
9+
10+
jobs:
11+
update_release_draft:
12+
runs-on: ubuntu-latest
13+
steps:
14+
# Drafts your next Release notes as Pull Requests are merged into "master"
15+
- uses: release-drafter/release-drafter@v5
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)