Skip to content

Commit

Permalink
simplify and improve logic
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Nov 15, 2024
1 parent db3bf96 commit 714688c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate-downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
body += `| pytest | ❌ Failed | [View Logs](${constructLogURL('pytest')}) |\n`;
}
body += `\n**Note**: These warnings don't block the PR but may require your attention.\n[View Logs]()\n`;
body += `\n**Note**: These failures don't necessarily block the PR but both authors and reviewers should check the results for unintentional breaking changes.\n[View Logs]()\n`;
// Post the failure comment
await github.rest.issues.createComment({
Expand All @@ -94,7 +94,7 @@ jobs:
// Fail the job to show a red X
core.setFailed("One or more pyQuil checks failed.");
} else {
} else { // or post success
let body = `✅ **pyQuil Compatibility Checks Passed** on Python \`${{ matrix.python-version }}\`. Great job!`;
// Post the success comment
Expand Down

0 comments on commit 714688c

Please sign in to comment.