6767 if : |
6868 github.event_name == 'pull_request' &&
6969 github.event.pull_request.draft == false
70- uses : settlemint/shared-actions/.github/actions/build-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
70+ uses : settlemint/shared-actions/.github/actions/build-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
7171 with :
7272 pr_number : ${{ github.event.pull_request.number }}
7373 workflow_status : " running"
7777 if : |
7878 github.event_name == 'pull_request' &&
7979 github.event.pull_request.draft == false
80- uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
80+ uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@55850ff8bb07bc437d573e687d8b460b41f5295d # main
8181 with :
8282 pr_number : ${{ github.event.pull_request.number }}
8383 pr_title : ${{ github.event.pull_request.title }}
9090
9191 # Setup dependencies for QA (skip for draft PRs)
9292 - name : Setup dependencies
93- uses : settlemint/shared-actions/.github/actions/setup-dependencies@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
93+ uses : settlemint/shared-actions/.github/actions/setup-dependencies@55850ff8bb07bc437d573e687d8b460b41f5295d # main
9494 with :
9595 github_token : ${{ secrets.GITHUB_TOKEN }}
9696 npm_token : ${{ env.NPM_TOKEN }}
@@ -176,7 +176,7 @@ jobs:
176176 always() &&
177177 github.event_name == 'pull_request' &&
178178 steps.qa-tests.conclusion != 'skipped'
179- uses : settlemint/shared-actions/.github/actions/build-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
179+ uses : settlemint/shared-actions/.github/actions/build-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
180180 with :
181181 pr_number : ${{ github.event.pull_request.number }}
182182 workflow_status : ${{ steps.qa-tests.outcome == 'success' && 'success' || 'failure' }}
@@ -189,7 +189,7 @@ jobs:
189189 if : |
190190 github.event_name == 'pull_request' &&
191191 (github.event.action == 'opened' || github.event.action == 'synchronize')
192- uses : settlemint/shared-actions/.github/actions/pr-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
192+ uses : settlemint/shared-actions/.github/actions/pr-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
193193 with :
194194 pr_number : ${{ github.event.pull_request.number }}
195195 pr_title : ${{ github.event.pull_request.title }}
@@ -201,7 +201,7 @@ jobs:
201201 - name : Run secret scanning
202202 id : secret-scan
203203 if : github.event_name == 'pull_request'
204- uses : settlemint/shared-actions/.github/actions/secret-scanner@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
204+ uses : settlemint/shared-actions/.github/actions/secret-scanner@55850ff8bb07bc437d573e687d8b460b41f5295d # main
205205 continue-on-error : true
206206
207207 # Label secret scanning results (PR only)
@@ -210,7 +210,7 @@ jobs:
210210 always() &&
211211 github.event_name == 'pull_request' &&
212212 steps.secret-scan.conclusion != 'skipped'
213- uses : settlemint/shared-actions/.github/actions/build-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
213+ uses : settlemint/shared-actions/.github/actions/build-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
214214 with :
215215 pr_number : ${{ github.event.pull_request.number }}
216216 workflow_status :
@@ -223,7 +223,7 @@ jobs:
223223 if : |
224224 always() &&
225225 (github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
226- uses : settlemint/shared-actions/.github/actions/pr-review-check@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
226+ uses : settlemint/shared-actions/.github/actions/pr-review-check@55850ff8bb07bc437d573e687d8b460b41f5295d # main
227227 with :
228228 pr_number : ${{ github.event.pull_request.number }}
229229 pr_author : ${{ github.event.pull_request.user.login }}
@@ -237,7 +237,7 @@ jobs:
237237 if : |
238238 always() &&
239239 (github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
240- uses : settlemint/shared-actions/.github/actions/pr-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
240+ uses : settlemint/shared-actions/.github/actions/pr-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
241241 with :
242242 pr_number : ${{ github.event.pull_request.number }}
243243 is_draft : ${{ github.event.pull_request.draft }}
@@ -251,7 +251,7 @@ jobs:
251251 steps.label-final-status.conclusion == 'success' &&
252252 (github.event_name == 'pull_request' || github.event_name == 'pull_request_review') &&
253253 github.event.pull_request.draft == false
254- uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
254+ uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@55850ff8bb07bc437d573e687d8b460b41f5295d # main
255255 with :
256256 pr_number : ${{ github.event.pull_request.number }}
257257 pr_title : ${{ github.event.pull_request.title }}
@@ -267,7 +267,7 @@ jobs:
267267 if : |
268268 always() &&
269269 (github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
270- uses : settlemint/shared-actions/.github/actions/auto-merge@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
270+ uses : settlemint/shared-actions/.github/actions/auto-merge@55850ff8bb07bc437d573e687d8b460b41f5295d # main
271271 with :
272272 pr_number : ${{ github.event.pull_request.number }}
273273 pr_author : ${{ github.event.pull_request.user.login }}
@@ -312,14 +312,14 @@ jobs:
312312 SLACK_CHANNEL_ID : op://platform/slack-bot/SLACK_CHANNEL_ID
313313
314314 - name : Label PR as merged
315- uses : settlemint/shared-actions/.github/actions/pr-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
315+ uses : settlemint/shared-actions/.github/actions/pr-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
316316 with :
317317 pr_number : ${{ github.event.pull_request.number }}
318318 is_draft : false
319319 is_merged : true
320320
321321 - name : Update Slack notification for merged PR
322- uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
322+ uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@55850ff8bb07bc437d573e687d8b460b41f5295d # main
323323 with :
324324 pr_number : ${{ github.event.pull_request.number }}
325325 pr_title : ${{ github.event.pull_request.title }}
@@ -366,14 +366,14 @@ jobs:
366366 SLACK_CHANNEL_ID : op://platform/slack-bot/SLACK_CHANNEL_ID
367367
368368 - name : Label PR as abandoned
369- uses : settlemint/shared-actions/.github/actions/pr-status-labeler@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
369+ uses : settlemint/shared-actions/.github/actions/pr-status-labeler@55850ff8bb07bc437d573e687d8b460b41f5295d # main
370370 with :
371371 pr_number : ${{ github.event.pull_request.number }}
372372 is_draft : false
373373 is_abandoned : true
374374
375375 - name : Update Slack notification for abandoned PR
376- uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@302eb329d1f7ae9a2ec2cecee0ee58ec721e7cfd # main
376+ uses : settlemint/shared-actions/.github/actions/slack-pr-notifier@55850ff8bb07bc437d573e687d8b460b41f5295d # main
377377 with :
378378 pr_number : ${{ github.event.pull_request.number }}
379379 pr_title : ${{ github.event.pull_request.title }}
0 commit comments