chore: deprecate tox in favor of act (#29382)

This commit is contained in:
Maxime Beauchemin
2024-11-26 13:27:37 -08:00
committed by GitHub
parent 68499a1199
commit fd9d3301f6
10 changed files with 152 additions and 289 deletions

View File

@@ -91,13 +91,14 @@ jobs:
const body = action === 'noop'
? `@${user} No ephemeral environment action detected. Please use '/testenv up' or '/testenv down'. [View workflow run](${workflowUrl}).`
: `@${user} Processing your ephemeral environment request [here](${workflowUrl}).`;
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body,
});
if (action !== 'noop') {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body,
});
}
ephemeral-docker-build: