diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e115ba4f9..35ef3f6ee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,21 +69,23 @@ jobs: name: E2E Base Test Suite needs: build-docker if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}" - uses: standardnotes/server/.github/workflows/common-e2e.yml@main + uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main with: snjs_image_tag: ${{ github.sha }} suite: base - secrets: inherit + author: ${{ github.actor }} + ref_name: "app:${{ github.ref }}" 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/common-e2e.yml@main + uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main with: snjs_image_tag: ${{ github.sha }} suite: vaults - secrets: inherit + author: ${{ github.actor }} + ref_name: "app:${{ github.ref }}" publish: name: Publish to NPM diff --git a/.github/workflows/snjs.pr.yml b/.github/workflows/snjs.pr.yml index ba7ecbc80..e9b630b54 100644 --- a/.github/workflows/snjs.pr.yml +++ b/.github/workflows/snjs.pr.yml @@ -76,17 +76,19 @@ jobs: e2e-base: name: E2E Base Test Suite needs: build-docker - uses: standardnotes/server/.github/workflows/common-e2e.yml@main + uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main with: snjs_image_tag: ${{ github.sha }} suite: base - secrets: inherit + author: ${{ github.actor }} + ref_name: "app:${{ github.ref }}" e2e-vaults: name: E2E Vaults Test Suite needs: build-docker - uses: standardnotes/server/.github/workflows/common-e2e.yml@main + uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main with: snjs_image_tag: ${{ github.sha }} suite: vaults - secrets: inherit + author: ${{ github.actor }} + ref_name: "app:${{ github.ref }}"