From 78d9ad3c2aff6c8273678f09f6e6d95458fdc6e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Mon, 2 Oct 2023 15:17:04 +0200 Subject: [PATCH] chore: fix workflow name --- .github/workflows/publish.yml | 10 ++++------ .github/workflows/snjs.pr.yml | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35ef3f6ee..e115ba4f9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,23 +69,21 @@ jobs: name: E2E Base Test Suite needs: build-docker if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}" - uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main + uses: standardnotes/server/.github/workflows/common-e2e.yml@main with: snjs_image_tag: ${{ github.sha }} suite: base - author: ${{ github.actor }} - ref_name: "app:${{ github.ref }}" + secrets: inherit e2e-vaults: name: E2E Vaults Test Suite needs: build-docker if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}" - uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main + uses: standardnotes/server/.github/workflows/common-e2e.yml@main with: snjs_image_tag: ${{ github.sha }} suite: vaults - author: ${{ github.actor }} - ref_name: "app:${{ github.ref }}" + secrets: inherit publish: name: Publish to NPM diff --git a/.github/workflows/snjs.pr.yml b/.github/workflows/snjs.pr.yml index e9b630b54..ba7ecbc80 100644 --- a/.github/workflows/snjs.pr.yml +++ b/.github/workflows/snjs.pr.yml @@ -76,19 +76,17 @@ jobs: e2e-base: name: E2E Base Test Suite needs: build-docker - uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main + uses: standardnotes/server/.github/workflows/common-e2e.yml@main with: snjs_image_tag: ${{ github.sha }} suite: base - author: ${{ github.actor }} - ref_name: "app:${{ github.ref }}" + secrets: inherit e2e-vaults: name: E2E Vaults Test Suite needs: build-docker - uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main + uses: standardnotes/server/.github/workflows/common-e2e.yml@main with: snjs_image_tag: ${{ github.sha }} suite: vaults - author: ${{ github.actor }} - ref_name: "app:${{ github.ref }}" + secrets: inherit