From f09201eb19bc88fa7f851f049c9c0f6c7c8ec670 Mon Sep 17 00:00:00 2001 From: MichaelKora Date: Thu, 28 Sep 2023 11:55:00 +0200 Subject: [PATCH] Test the tmp dir --- .github/workflows/java-gradle-release.yaml | 6 ++++++ actions/java-gradle-release/action.yaml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/java-gradle-release.yaml b/.github/workflows/java-gradle-release.yaml index b4afbdeba..be068e126 100644 --- a/.github/workflows/java-gradle-release.yaml +++ b/.github/workflows/java-gradle-release.yaml @@ -9,6 +9,11 @@ on: required: true type: string + changelog-file: + description: Path to the changelog file in the GitHub repository + required: false + default: "CHANGELOG.md" + type: string gradle-cache: description: "Whether Gradle caching is enabled or not. (Default is true)" required: false @@ -67,6 +72,7 @@ jobs: # uses: bakdata/ci-templates/actions/java-gradle-release@1.35.0 with: release-type: ${{ inputs.release-type }} + changelog-file: "${{ inputs.changelog-file }}" github-email: ${{ secrets.github-email }} github-username: ${{ secrets.github-username }} github-token: ${{ secrets.github-token }} diff --git a/actions/java-gradle-release/action.yaml b/actions/java-gradle-release/action.yaml index cc432215c..8a94c8cb5 100644 --- a/actions/java-gradle-release/action.yaml +++ b/actions/java-gradle-release/action.yaml @@ -2,6 +2,10 @@ name: "Release Java artifacts" description: "Release Java Gradle artifacts on Github" inputs: + changelog-file: + description: Path to the changelog file in the GitHub repository + required: false + default: "CHANGELOG.md" release-type: description: "Scope of the release" required: true