wildfly-github-bot helps you to keep your pull requests in the correct format.
This project is build with usage of Quarkus GitHub App: https://quarkiverse.github.io/quarkiverse-docs/quarkus-github-app/dev/index.html
After forking the project we need to register wildfly-github-bot on GitHub for your account. Go to GitHub Apps and click on New GitHub Apps
Also, you can access this page by clicking on your profile picture on gitHub and go to Settings > Developer Settings > GitHub Apps > New GitHub App
.
Fields to fill in:
- GitHub App name- should be unique
- Homepage URL- the link to the forked project
- Webhook URL
- Go to smee.io and press
Start a new channel
- Add this link to
Webhook URL
- Set up permissions
Commit statuses
-Access: Read and write
Metadata
-Access: Read-only
Pull requests
-Access: Read and write
- Subscribe to events
Pull requests
Pull request review comment
-
Create a private key
After creating the app scroll down and press
Generate a private key
You will be asked to download the key, keep it around, we will need it for the next step.
As the configuration is environment-specific, and you probably don’t want to commit it in your repository, the best is to create in the root a .env
file.
The content of your .env file should be as follows:
QUARKUS_GITHUB_APP_APP_ID=<the numeric app id>
QUARKUS_GITHUB_APP_APP_NAME=<the name of your app>
QUARKUS_GITHUB_APP_WEBHOOK_PROXY_URL=<your Smee.io channel URL>
QUARKUS_GITHUB_APP_PRIVATE_KEY=-----BEGIN RSA PRIVATE KEY-----\
<your private key> \
-----END RSA PRIVATE KEY-----
QUARKUS_GITHUB_APP_APP_ID The numeric app id appears in the App ID field.
QUARKUS_GITHUB_APP_APP_NAME The name of your app is the one appearing in the GitHub URL. It is only used to improve usability in dev mode.
QUARKUS_GITHUB_APP_WEBHOOK_PROXY_URL The URL you obtained when you created your Smee.io channel.
QUARKUS_GITHUB_APP_PRIVATE_KEY The content of the private key you generated and downloaded. Open the key file with a text editor as key viewers usually only show fingerprints.
- Create a new repo or use an already created one in which you want to track PRs.
- Go to the settings of your GitHub App and go to
Install App > Install > Only select repositories > Select the one you need > Install
- In your repo in the main branch create a folder
.github
and a filewildfly-bot.yml
with xml code in it:
wildfly:
rules:
- title: "test"
- body: "test"
notify: [xstefank,petrberan]
format:
title-check:
pattern: "\\[WFLY-\\d+\\]\\s+.*|WFLY-\\d+\\s+.*"
message: "Wrong content of the title!"
description:
pattern: "JIRA:\\s+https://issues.redhat.com/browse/WFLY-\\d+|https://issues.redhat.com/browse/WFLY-\\d+"
message: "The PR description must contain a link to the JIRA issue"
commits-quantity:
quantity: "1-3"
message: "Too many commits in PR!"
title-check
- Checks the title of a PR by using a regular expression in thepattern
field.
The correct format in example is "[WFLY-11] Name"
description
- Checks comments of a PR by using regular expressions in thepattern
field.
The correct format in example is "https://issues.jboss.org/browse/WFLY-11"
commits-quantity
- Checks the amount of commits in PR with the amount in thequantity
field.
In the field you can use the exact values '1', '2' or range '1-2', '2-4' up to 100.
message
- The text of an error message in the respective check.
Also, there is a possibility to select checks that you need. Just left in the wildfly-bot.yml
file checks you need.
Like this:
wildfly:
rules:
- title: "test"
- body: "test"
notify: [xstefank,petrberan]
format:
title-check:
pattern: "\\[WFLY-\\d+\\]\\s+.*|WFLY-\\d+\\s+.*"
message: "Wrong content of the title!"
Run your application in dev mode that enables live coding using:
./mvnw compile quarkus:dev
NOTE: Dev UI available in dev mode only at http://localhost:8080/q/dev/.
Try to create a PR and update it a few times. The format check sends commit statuses that you will see in the PR.
- JDK 17+ with JAVA_HOME configured appropriately
- OpenShift (e.g, https://developers.redhat.com/developer-sandbox)
- OpenShift CLI
- Apache Maven 3.8.6
Fill in the following information.
- Application name
- Homepage URL
- Webhook URL
- put any placeholder URL here, as you will get the URL after the deployment
- Webhook secret
- You can generate a secret by using GitHub's recommended method:
ruby -rsecurerandom -e 'puts SecureRandom.hex(20)'
- or use
pwgen
:pwgen -N 1 -s 40
- save it as you will need it later
- You can generate a secret by using GitHub's recommended method:
- Permissions
Commit statuses
-Access: Read and write
Metadata
-Access: Read-only
Pull requests
-Access: Read and write
- Subscribe to events
Pull requests
Pull request review comment
- Scroll down to generate a private key
- Download it as you will need it later
- You can find this in the "Install App" tab of your GitHub application
oc login -u <username>
- You will need to fill required information in prompt
oc login --token=<token> --server=<serverUrl>
- You can request the token via the
Copy Login Command
link in the OpenShift web console.
- You can request the token via the
`oc create secret generic <secret-name> --from-literal=QUARKUS_GITHUB_APP_WEBHOOK_SECRET=<your-webhook-secret> --from-file=QUARKUS_GITHUB_APP_PRIVATE_KEY=<path-to-your-private-key>`
-
Go to the application home directory and run:
./mvnw clean install -Dquarkus.kubernetes.deploy=true -Dquarkus.openshift.env.vars.quarkus-github-app-app-id=<your-github-app-id> -Dquarkus.openshift.env.secrets=<secret-name>
-
You can also put the config properties to the
application.properties
-
Get the list of exposed routes:
oc get routes
-
Edit the WebHook URL using the retrieved
HOST/PORT
value:http://<HOST/PORT>
And that's it. Again, try to create a PR to verify the format of the PR.