diff --git a/.github/workflows/package-on-merge.yaml b/.github/workflows/package-on-merge.yaml index db82ad6a5fb..601fc1bcc55 100644 --- a/.github/workflows/package-on-merge.yaml +++ b/.github/workflows/package-on-merge.yaml @@ -236,6 +236,15 @@ jobs: message: "@${{ github.event.client_payload.github.actor }} The requested package for the '${{ needs.solutionNameDetails.outputs.solutionName }}' solution has been generated based on Pull request #${{ github.event.client_payload.pull_request.number }}" prNumber: "${{ needs.createNewPR.outputs.newPRNumber }}" + addAutoPackageLabel: + name: Add Label of Auto-Package + needs: createNewPR + if: ${{ success() }} + uses: ./.github/workflows/addLabelOnPr.yaml + with: + labelName: "auto-package" + secrets: inherit + release-project: name: Publish-Artifacts runs-on: ubuntu-latest diff --git a/.github/workflows/slash-command-dispatch.yaml b/.github/workflows/slash-command-dispatch.yaml index 2ae78f97ac8..ad18bdee9bd 100644 --- a/.github/workflows/slash-command-dispatch.yaml +++ b/.github/workflows/slash-command-dispatch.yaml @@ -35,3 +35,12 @@ jobs: repository: ${{env.REPO_OWNER}}/${{env.REPO_NAME}} issue-type: pull-request reactions: false + + addAutoPackageLabel: + name: Add Label of Auto-Package + needs: slashCommandDispatch + if: ${{ success() }} + uses: ./.github/workflows/addLabelOnPr.yaml + with: + labelName: "auto-package" + secrets: inherit \ No newline at end of file