Skip to content

Commit 8ec2804

Browse files
committed
refactor: update GitHub Actions workflows to use shared action paths
This commit updates the GitHub Actions workflows in `qa.yml` to replace references to the `settlemint/asset-ization-kit` actions with the new `settlemint/shared-actions` paths. This change ensures consistency and aligns with the latest repository structure. No functional changes are introduced.
1 parent d8c51e3 commit 8ec2804

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
@@ -82,7 +82,7 @@ jobs:
8282
if: |
8383
github.event_name == 'pull_request' &&
8484
github.event.pull_request.draft == false
85-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
85+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
8686
with:
8787
pr_number: ${{ github.event.pull_request.number }}
8888
workflow_status: "running"
@@ -92,7 +92,7 @@ jobs:
9292
if: |
9393
github.event_name == 'pull_request' &&
9494
github.event.pull_request.draft == false
95-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
95+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
9696
with:
9797
pr_number: ${{ github.event.pull_request.number }}
9898
pr_title: ${{ github.event.pull_request.title }}
@@ -109,7 +109,7 @@ jobs:
109109
github.event_name == 'push' ||
110110
(github.event_name == 'pull_request' && github.event.pull_request.draft == false) ||
111111
github.event_name == 'pull_request_review'
112-
uses: settlemint/asset-tokenization-kit/.github/actions/setup-dependencies@main
112+
uses: settlemint/shared-actions/.github/actions/setup-dependencies@main
113113
with:
114114
github_token: ${{ secrets.GITHUB_TOKEN }}
115115
npm_token: ${{ env.NPM_TOKEN }}
@@ -166,7 +166,7 @@ jobs:
166166
always() &&
167167
github.event_name == 'pull_request' &&
168168
steps.qa-tests.conclusion != 'skipped'
169-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
169+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
170170
with:
171171
pr_number: ${{ github.event.pull_request.number }}
172172
workflow_status: ${{ steps.qa-tests.outcome == 'success' && 'success' || 'failure' }}
@@ -179,7 +179,7 @@ jobs:
179179
if: |
180180
github.event_name == 'pull_request' &&
181181
(github.event.action == 'opened' || github.event.action == 'synchronize')
182-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-labeler@main
182+
uses: settlemint/shared-actions/.github/actions/pr-labeler@main
183183
with:
184184
pr_number: ${{ github.event.pull_request.number }}
185185
pr_title: ${{ github.event.pull_request.title }}
@@ -191,7 +191,7 @@ jobs:
191191
- name: Run secret scanning
192192
id: secret-scan
193193
if: github.event_name == 'pull_request'
194-
uses: settlemint/asset-tokenization-kit/.github/actions/secret-scanner@main
194+
uses: settlemint/shared-actions/.github/actions/secret-scanner@main
195195
continue-on-error: true
196196

197197
# Label secret scanning results (PR only)
@@ -200,7 +200,7 @@ jobs:
200200
always() &&
201201
github.event_name == 'pull_request' &&
202202
steps.secret-scan.conclusion != 'skipped'
203-
uses: settlemint/asset-tokenization-kit/.github/actions/build-status-labeler@main
203+
uses: settlemint/shared-actions/.github/actions/build-status-labeler@main
204204
with:
205205
pr_number: ${{ github.event.pull_request.number }}
206206
workflow_status:
@@ -215,7 +215,7 @@ jobs:
215215
if: |
216216
always() &&
217217
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
218-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-review-check@main
218+
uses: settlemint/shared-actions/.github/actions/pr-review-check@main
219219
with:
220220
pr_number: ${{ github.event.pull_request.number }}
221221
pr_author: ${{ github.event.pull_request.user.login }}
@@ -229,7 +229,7 @@ jobs:
229229
if: |
230230
always() &&
231231
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
232-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
232+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
233233
with:
234234
pr_number: ${{ github.event.pull_request.number }}
235235
is_draft: ${{ github.event.pull_request.draft }}
@@ -243,7 +243,7 @@ jobs:
243243
steps.label-final-status.conclusion == 'success' &&
244244
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review') &&
245245
github.event.pull_request.draft == false
246-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
246+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
247247
with:
248248
pr_number: ${{ github.event.pull_request.number }}
249249
pr_title: ${{ github.event.pull_request.title }}
@@ -259,7 +259,7 @@ jobs:
259259
if: |
260260
always() &&
261261
(github.event_name == 'pull_request' || github.event_name == 'pull_request_review')
262-
uses: settlemint/asset-tokenization-kit/.github/actions/auto-merge@main
262+
uses: settlemint/shared-actions/.github/actions/auto-merge@main
263263
with:
264264
pr_number: ${{ github.event.pull_request.number }}
265265
pr_author: ${{ github.event.pull_request.user.login }}
@@ -302,14 +302,14 @@ jobs:
302302
SLACK_CHANNEL_ID: op://platform/slack-bot/SLACK_CHANNEL_ID
303303

304304
- name: Label PR as merged
305-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
305+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
306306
with:
307307
pr_number: ${{ github.event.pull_request.number }}
308308
is_draft: false
309309
is_merged: true
310310

311311
- name: Update Slack notification for merged PR
312-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
312+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
313313
with:
314314
pr_number: ${{ github.event.pull_request.number }}
315315
pr_title: ${{ github.event.pull_request.title }}
@@ -354,14 +354,14 @@ jobs:
354354
SLACK_CHANNEL_ID: op://platform/slack-bot/SLACK_CHANNEL_ID
355355

356356
- name: Label PR as abandoned
357-
uses: settlemint/asset-tokenization-kit/.github/actions/pr-status-labeler@main
357+
uses: settlemint/shared-actions/.github/actions/pr-status-labeler@main
358358
with:
359359
pr_number: ${{ github.event.pull_request.number }}
360360
is_draft: false
361361
is_abandoned: true
362362

363363
- name: Update Slack notification for abandoned PR
364-
uses: settlemint/asset-tokenization-kit/.github/actions/slack-pr-notifier@main
364+
uses: settlemint/shared-actions/.github/actions/slack-pr-notifier@main
365365
with:
366366
pr_number: ${{ github.event.pull_request.number }}
367367
pr_title: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)