From edf77874a51e501145e4364c22265e23dcca3235 Mon Sep 17 00:00:00 2001 From: "Luong Vo (Lucas)" Date: Fri, 3 Nov 2023 17:46:42 +0700 Subject: [PATCH] test --- .github/workflows/android_deploy_staging.yml | 9 ++++++--- .github/workflows/configuration.json | 12 ++++++++++-- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android_deploy_staging.yml b/.github/workflows/android_deploy_staging.yml index aa5f3d36..eb945f87 100644 --- a/.github/workflows/android_deploy_staging.yml +++ b/.github/workflows/android_deploy_staging.yml @@ -16,16 +16,19 @@ jobs: - name: Check out uses: actions/checkout@v3 + - name: Find Head + id: head + run: echo "::set-output name=head::$(git rev-parse HEAD)" + - name: Build changelog on "develop" id: changelog uses: mikepenz/release-changelog-builder-action@v4 with: configuration: ".github/workflows/configuration.json" - fromTag: "1.12.0" - toTag: "f41978f4c4bcc0848f3aa0a413815c5db6aafde2" + toTag: ${{ steps.head.outputs.head }} token: ${{ secrets.GITHUB_TOKEN }} - name: Print release notes run: | - echo ${{ github.event.pull_request.head.ref }} + echo ${{ steps.head.outputs.head }} echo ${{ steps.changelog.outputs.changelog }} diff --git a/.github/workflows/configuration.json b/.github/workflows/configuration.json index b61a10ea..e1625d61 100644 --- a/.github/workflows/configuration.json +++ b/.github/workflows/configuration.json @@ -1,7 +1,7 @@ { "categories": [ { - "title": "## 🚀 Features", + "title": "## ✨ Features", "labels": [ "type : feature" ] @@ -13,10 +13,18 @@ ] }, { - "title": "## 🧪 Chores", + "title": "## 🧹 Chores", "labels": [ "type : chore" ] + }, + { + "title": "## Others", + "exclude_labels": [ + "type : feature", + "type : bug", + "type : chore" + ] } ] }