Skip to content

Commit b156a69

Browse files
committed
chore: update GitHub Actions to use shared actions
Replaced references to settlemint/asset-tokenization-kit actions with settlemint/shared-actions in the QA workflow. This change ensures consistency and utilizes the latest shared action implementations for building status labels, Slack notifications, and PR labeling.
1 parent fa1c272 commit b156a69

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/qa.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
if: |
8888
github.event_name == 'pull_request' &&
8989
github.event.pull_request.draft == false
90-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
90+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
9191
with:
9292
pr_number: ${{ github.event.pull_request.number }}
9393
workflow_status: "running"
@@ -97,7 +97,7 @@ jobs:
9797
if: |
9898
github.event_name == 'pull_request' &&
9999
github.event.pull_request.draft == false
100-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
100+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
101101
with:
102102
pr_number: ${{ github.event.pull_request.number }}
103103
pr_title: ${{ github.event.pull_request.title }}
@@ -115,7 +115,7 @@ jobs:
115115
github.event_name == 'pull_request' ||
116116
github.event_name == 'pull_request_review' ||
117117
github.event_name == 'release'
118-
uses: settlemint/asset-tokenization-kit/.github/actions/setup-dependencies@main
118+
uses: settlemint/shared-actions/.github/actions/setup-dependencies@main
119119
with:
120120
github_token: ${{ secrets.GITHUB_TOKEN }}
121121
npm_token: ${{ env.NPM_TOKEN }}
@@ -254,7 +254,7 @@ jobs:
254254
always() &&
255255
github.event_name == 'pull_request' &&
256256
steps.qa-tests.conclusion != 'skipped'
257-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
257+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
258258
with:
259259
pr_number: ${{ github.event.pull_request.number }}
260260
workflow_status:
@@ -268,7 +268,7 @@ jobs:
268268
if: |
269269
github.event_name == 'pull_request' &&
270270
(github.event.action == 'opened' || github.event.action == 'synchronize')
271-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-labeler@main
271+
uses: settlemint/shared-actions/.github/actions/pr-labeler@main
272272
with:
273273
pr_number: ${{ github.event.pull_request.number }}
274274
pr_title: ${{ github.event.pull_request.title }}
@@ -280,7 +280,7 @@ jobs:
280280
- name: Run secret scanning
281281
id: secret-scan
282282
if: github.event_name == 'pull_request'
283-
uses: settlemint/asset-tokenization-kit/.github/actions/secret-scanner@main
283+
uses: settlemint/shared-actions/.github/actions/secret-scanner@main
284284
continue-on-error: true
285285

286286
# Label secret scanning results (PR only)
@@ -289,7 +289,7 @@ jobs:
289289
always() &&
290290
github.event_name == 'pull_request' &&
291291
steps.secret-scan.conclusion != 'skipped'
292-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
292+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
293293
with:
294294
pr_number: ${{ github.event.pull_request.number }}
295295
workflow_status:
@@ -304,7 +304,7 @@ jobs:
304304
if: |
305305
always() &&
306306
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
307-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-review-check@main
307+
uses: settlemint/shared-actions/.github/actions/pr-review-check@main
308308
with:
309309
pr_number: ${{ github.event.pull_request.number }}
310310
pr_author: ${{ github.event.pull_request.user.login }}
@@ -318,7 +318,7 @@ jobs:
318318
if: |
319319
always() &&
320320
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
321-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
321+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
322322
with:
323323
pr_number: ${{ github.event.pull_request.number }}
324324
is_draft: ${{ github.event.pull_request.draft }}
@@ -333,7 +333,7 @@ jobs:
333333
steps.label-final-status.conclusion == 'success' &&
334334
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review') &&
335335
github.event.pull_request.draft == false
336-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
336+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
337337
with:
338338
pr_number: ${{ github.event.pull_request.number }}
339339
pr_title: ${{ github.event.pull_request.title }}
@@ -349,7 +349,7 @@ jobs:
349349
if: |
350350
always() &&
351351
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
352-
uses: settlemint/asset-tokenization-kit/.github/actions/auto-merge@main
352+
uses: settlemint/shared-actions/.github/actions/auto-merge@main
353353
with:
354354
pr_number: ${{ github.event.pull_request.number }}
355355
pr_author: ${{ github.event.pull_request.user.login }}
@@ -395,14 +395,14 @@ jobs:
395395
SLACK_CHANNEL_ID: op://platform/slack-bot/SLACK_CHANNEL_ID
396396

397397
- name: Label PR as merged
398-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
398+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
399399
with:
400400
pr_number: ${{ github.event.pull_request.number }}
401401
is_draft: false
402402
is_merged: true
403403

404404
- name: Update Slack notification for merged PR
405-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
405+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
406406
with:
407407
pr_number: ${{ github.event.pull_request.number }}
408408
pr_title: ${{ github.event.pull_request.title }}
@@ -449,14 +449,14 @@ jobs:
449449
SLACK_CHANNEL_ID: op://platform/slack-bot/SLACK_CHANNEL_ID
450450

451451
- name: Label PR as abandoned
452-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
452+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
453453
with:
454454
pr_number: ${{ github.event.pull_request.number }}
455455
is_draft: false
456456
is_abandoned: true
457457

458458
- name: Update Slack notification for abandoned PR
459-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
459+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
460460
with:
461461
pr_number: ${{ github.event.pull_request.number }}
462462
pr_title: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)