Skip to content

Commit

Permalink
chore: Add release-please workflow (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
HorizonNet authored Oct 31, 2023
1 parent 3d2ff46 commit 973bd5f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
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:
- "*"
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/release-please-action@v3.7.12
with:
release-type: java
extra-files: build.gradle
name: kafka-ldap-integration
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
}

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

sourceCompatibility = "$java_version"

Expand Down

0 comments on commit 973bd5f

Please sign in to comment.