From 6da491c91fa10b3d320ffe7a70d356e6b45603c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20J=C3=A4ggi?= Date: Fri, 12 Jan 2024 11:22:05 +0100 Subject: [PATCH 1/2] fix: getSitesByDeliveryType signature --- packages/spacecat-shared-data-access/src/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-data-access/src/index.d.ts b/packages/spacecat-shared-data-access/src/index.d.ts index ed2f45347..45b74db61 100644 --- a/packages/spacecat-shared-data-access/src/index.d.ts +++ b/packages/spacecat-shared-data-access/src/index.d.ts @@ -242,7 +242,9 @@ export interface DataAccess { siteId: string, ) => Promise; getSites: () => Promise; - getSitesByDeliveryType: () => Promise; + getSitesByDeliveryType: ( + deliveryType: string, + ) => Promise; getSitesToAudit: () => Promise; getSitesWithLatestAudit: ( auditType: string, From c8aff915d03d303f384940af8ba0960a45fd34d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20J=C3=A4ggi?= Date: Fri, 12 Jan 2024 11:24:32 +0100 Subject: [PATCH 2/2] fix: action name --- .github/workflows/semver-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semver-check.yaml b/.github/workflows/semver-check.yaml index 6527b6435..e3ae757bf 100644 --- a/.github/workflows/semver-check.yaml +++ b/.github/workflows/semver-check.yaml @@ -10,6 +10,6 @@ jobs: steps: - name: Comment id: comment - uses: adobe/github-semantic-release-comment-action@master + uses: adobe-rnd/github-semantic-release-comment-action@master with: repo-token: ${{ secrets.GITHUB_TOKEN }}