Skip to content

Commit

Permalink
Merge branch 'main' into kafka-3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HorizonNet committed Oct 31, 2023
2 parents 948c39c + 973bd5f commit 274a82c
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .github/config/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@
- name: "question"
color: "d876e3"
description: "Further information is requested"
- name: "size/XS"
color: "0e8a16"
description: "PR with minimal changes"
- name: "size/S"
color: "0EFABD"
description: "PR with small changes"
- name: "size/M"
color: "75CEF4"
description: "PR with medium changes"
- name: "size/L"
color: "FBCA04"
description: "PR with large changes"
- name: "size/XL"
color: "B60205"
description: "PR with very large changes"
- name: "wontfix"
color: "ffffff"
description: "This will not be worked on"
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ updates:

- package-ecosystem: "github-actions"
directory: "/"
commit-message:
prefix: "chore"
schedule:
interval: "daily"
time: "07:00"
timezone: "Europe/Berlin"

- package-ecosystem: "docker"
directory: "/"
commit-message:
prefix: "chore"
schedule:
interval: "daily"
time: "07:00"
Expand Down
18 changes: 18 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
changelog:
exclude:
labels:
- ignore-for-release
categories:
- title: Breaking Changes 🛠
labels:
- breaking
- title: Exciting New Features 🎉
labels:
- feature
- title: Fixes 🔧
labels:
- fix
- title: Other Changes
labels:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0

- name: Lint Code Base
uses: super-linter/super-linter@v5.5.0
uses: super-linter/super-linter@v5.6.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/pull-request-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Pull Request Labeler

on:
pull_request_target:

jobs:
triage:
name: Label triage

permissions:
issues: write
pull-requests: write

runs-on: ubuntu-22.04

steps:
- uses: CodelyTV/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_label: 'size/XS'
xs_max_size: '30'
s_label: 'size/S'
s_max_size: '60'
m_label: 'size/M'
m_max_size: '150'
l_label: 'size/L'
l_max_size: '300'
xl_label: 'size/XL'
message_if_xl: ''
24 changes: 24 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: release-please

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
name: release-please

runs-on: ubuntu-22.04

steps:
- uses: google-github-actions/[email protected]
with:
release-type: java
extra-files: build.gradle
name: kafka-ldap-integration
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/[email protected]

- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected].0
uses: aquasecurity/[email protected].1
with:
scan-type: 'fs'
format: 'sarif'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext.kafka_version = '3.3.2'
ext.scala_version = '2.13'
ext.kotlin_version = '1.9.10'
ext.kotlin_version = '1.9.20'
ext.unboundid_version = '6.0.10'
ext.caffeine_version = '3.1.8'
ext.jackson_version = '2.15.3'
Expand All @@ -28,7 +28,7 @@ plugins {
}

group 'com.ultratendency.kafka.ldap'
version '2.0.0'
version '2.0.0' // x-release-please-version

sourceCompatibility = "$java_version"

Expand Down

0 comments on commit 274a82c

Please sign in to comment.