diff --git a/.github/workflows/android_deploy_staging.yml b/.github/workflows/android_deploy_staging.yml index 1aabfed9..5b2e4509 100644 --- a/.github/workflows/android_deploy_staging.yml +++ b/.github/workflows/android_deploy_staging.yml @@ -20,6 +20,13 @@ jobs: id: head run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT + - name: Limit changelog to the latest pull request only + uses: jossef/action-set-json-field@v2 + with: + file: .github/workflows/changelog-config.json + field: max_pull_requests + value: 1 + - name: Build changelog on "develop" id: changelog uses: mikepenz/release-changelog-builder-action@v4 diff --git a/.github/workflows/changelog-config.json b/.github/workflows/changelog-config.json index 9342c48e..aabe4d5f 100644 --- a/.github/workflows/changelog-config.json +++ b/.github/workflows/changelog-config.json @@ -27,5 +27,6 @@ "type : release" ] } - ] + ], + "max_pull_requests": 200 }