Skip to content

Commit

Permalink
testing25
Browse files Browse the repository at this point in the history
  • Loading branch information
aali309 committed Oct 26, 2023
1 parent 602b18d commit 2295e38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\build_test**\` completed successfully ✅. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\build_test\` completed successfully ✅. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -225,7 +225,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\retest**\` Integration: All tests pass ✅. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\retest\` Integration: All tests pass ✅. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -242,7 +242,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\build_test**\` : At least one test failed ❌. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\build_test\` : At least one test failed ❌. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -259,7 +259,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\retest**\` Integration: At least one test failed ❌. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\retest\` Integration: At least one test failed ❌. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand Down

0 comments on commit 2295e38

Please sign in to comment.