Skip to content

Commit

Permalink
New pr-tests GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed Jan 7, 2025
1 parent 01a9405 commit 9753a85
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,13 @@ jobs:
uses: actions/github-script@v6
with:
script: |
const { context } = github;
const comment = `
✅ Tests Passed!
- Run ID: ${context.runId}
- Job ID: ${context.job}`;
- Run ID: ${github.context.runId}
- Job ID: ${github.context.job}`;
await github.rest.issues.createComment({
...context.repo,
issue_number: context.issue.number,
...github.context.repo,
issue_number: github.context.issue.number,
body: comment
});
});

0 comments on commit 9753a85

Please sign in to comment.