Skip to content

Commit

Permalink
fix(repo): GHA Syntax Error (#3811)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmilewski authored Jul 24, 2024
1 parent 1e4054c commit 7643a87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7643a87

Please sign in to comment.