From c1c2975f556bd310f10cbe242863e8e1b0beb9df Mon Sep 17 00:00:00 2001 From: Ivanmeneges Date: Sun, 31 May 2026 14:42:36 +0530 Subject: [PATCH 1/2] Update use-pr-linker workflow to use pull_request_target Signed-off-by: Ivanmeneges --- .github/workflows/use-pr-linker.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/use-pr-linker.yml diff --git a/.github/workflows/use-pr-linker.yml b/.github/workflows/use-pr-linker.yml new file mode 100644 index 000000000..e0ce52f27 --- /dev/null +++ b/.github/workflows/use-pr-linker.yml @@ -0,0 +1,21 @@ +name: Auto link PR to Issues + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + - closed + +permissions: + contents: read + issues: write + pull-requests: read + +jobs: + call-linker: + uses: mosip/kattu/.github/workflows/link-pr-to-issue.yml@develop + secrets: + ACTION_PAT: ${{ secrets.ACTION_PAT }} \ No newline at end of file From 9e31461fe813d5f0b5023fffd47d9c842f2aae4f Mon Sep 17 00:00:00 2001 From: Ivanmeneges Date: Mon, 29 Jun 2026 16:33:37 +0530 Subject: [PATCH 2/2] Comment out action-slack notification step in workflows (#2090) Disable 8398a7/action-slack@v3 failure notifications in push trigger workflow by commenting out the step block. Co-authored-by: Cursor Agent Co-authored-by: Ivanmeneges --- .github/workflows/push-trigger.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index e2e00e7ba..080de6114 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -168,13 +168,13 @@ jobs: with: name: ${{ env.BUILD_ARTIFACT }} path: ${{ env.BUILD_ARTIFACT }}.zip - - uses: 8398a7/action-slack@v3 - with: - status: ${{ job.status }} - fields: repo,message,author,commit,workflow,job # selectable (default: repo,message) - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required - if: failure() # Pick up events even if the job fails or is canceled. +# - uses: 8398a7/action-slack@v3 +# with: +# status: ${{ job.status }} +# fields: repo,message,author,commit,workflow,job # selectable (default: repo,message) +# env: +# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required +# if: failure() # Pick up events even if the job fails or is canceled. build-dockers_apitest_esignet: needs: build-apitest-esignet-local