From 5a268b8868174f86e67ddbb31752729e185eb3a6 Mon Sep 17 00:00:00 2001 From: xilesun <2013xile@gmail.com> Date: Tue, 3 Dec 2024 20:17:37 +0800 Subject: [PATCH] chore(ci): update --- .github/workflows/manual-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 32fd062b5e..76e99b4da6 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -6,6 +6,10 @@ concurrency: on: workflow_dispatch: + inputs: + is_feat: + description: 'is feat' + type: boolean jobs: get-plugins: @@ -111,10 +115,11 @@ jobs: git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]' git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>' echo "packages/pro-plugins" >> .git/info/exclude - bash release.sh + bash release.sh $IS_FEAT env: PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.rc-plugins }} CUSTOM_PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.custom-plugins }} + IS_FEAT: ${{ inputs.is_feat && '--is-feat' || '' }} - name: Push and merge into next run: | for repo in ${{ join(fromJSON(needs.get-plugins.outputs.rc-plugins), ' ') }} ${{ join(fromJSON(needs.get-plugins.outputs.custom-plugins), ' ') }}