Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
luongvo committed Nov 3, 2023
1 parent b063178 commit d669bf9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/android_deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- test-lucas

jobs:
build_and_deploy_android:
Expand All @@ -24,4 +25,6 @@ jobs:

- name: Print release notes
run: |
echo ${{ steps.changelog.outputs.changelog }}
echo categorized_prs ${{ steps.changelog.outputs.categorized_prs }}
echo uncategorized_prs ${{ steps.changelog.outputs.uncategorized_prs }}
echo "${{ steps.changelog.outputs.changelog }}"
12 changes: 8 additions & 4 deletions .github/workflows/android_deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,20 @@ 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.changelog.outputs.changelog }}
echo categorized_prs ${{ steps.changelog.outputs.categorized_prs }}
echo uncategorized_prs ${{ steps.changelog.outputs.uncategorized_prs }}
echo "${{ steps.changelog.outputs.changelog }}"
12 changes: 10 additions & 2 deletions .github/workflows/configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"categories": [
{
"title": "## 🚀 Features",
"title": "## Features",
"labels": [
"type : feature"
]
Expand All @@ -13,10 +13,18 @@
]
},
{
"title": "## 🧪 Chores",
"title": "## 🧹 Chores",
"labels": [
"type : chore"
]
},
{
"title": "## Others",
"exclude_labels": [
"type : feature",
"type : bug",
"type : chore"
]
}
]
}

0 comments on commit d669bf9

Please sign in to comment.