From 7643a872073704e881dd7ace339994c846f6602b Mon Sep 17 00:00:00 2001 From: Tom Milewski Date: Wed, 24 Jul 2024 16:50:55 -0400 Subject: [PATCH] fix(repo): GHA Syntax Error (#3811) --- .github/workflows/preview.yml | 2 +- .github/workflows/release-snapshot.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 60b0a375dd..85ed47b339 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -69,7 +69,7 @@ jobs: const prLastPushed = new Date(pr.pushed_at); if (prLastPushed > commentCreated) { - core.setFailed("The PR has been updated since !preview was initiated. Please review the changes and re-run the !preview command.'); + core.setFailed("The PR has been updated since !preview was initiated. Please review the changes and re-run the !preview command."); } - name: Setup diff --git a/.github/workflows/release-snapshot.yml b/.github/workflows/release-snapshot.yml index 5765895697..93f107add8 100644 --- a/.github/workflows/release-snapshot.yml +++ b/.github/workflows/release-snapshot.yml @@ -63,7 +63,7 @@ jobs: const prLastPushed = new Date(pr.pushed_at); if (prLastPushed > commentCreated) { - core.setFailed("The PR has been updated since !snapshot was initiated. Please review the changes and re-run the !snapshot command.'); + core.setFailed("The PR has been updated since !snapshot was initiated. Please review the changes and re-run the !snapshot command."); } - name: Setup