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 f41978f commit 68f0ac8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/android_deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- develop
- chore/198-test-merge-1
- test-lucas

jobs:
build_and_deploy_android:
Expand All @@ -16,10 +17,18 @@ jobs:
- name: Check out
uses: actions/checkout@v3

- name: Get PR information
uses: 8BitJonny/[email protected]
id: PR
# - name: Get PR information
# uses: 8BitJonny/[email protected]
# id: PR

- name: "Build Changelog"
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/configuration.json"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Print release notes
run: |
echo ${{ steps.PR.outputs.pr_body }}
echo ${{ steps.build_changelog.outputs.changelog }}
22 changes: 22 additions & 0 deletions .github/workflows/configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"categories": [
{
"title": "## 🚀 Features",
"labels": [
"type : feature"
]
},
{
"title": "## 🐛 Bug fixes",
"labels": [
"type : bug"
]
},
{
"title": "## 🧪 Chores",
"labels": [
"type : chore"
]
}
]
}

0 comments on commit 68f0ac8

Please sign in to comment.