We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c562d63 commit 14e4904Copy full SHA for 14e4904
src/action.ts
@@ -174,11 +174,13 @@ export class Action {
174
175
const octokit = getOctokit(this.token);
176
await octokit.rest.issues.createComment({
177
- body: `
178
-${this.commitSha} has been deployed!
+ body: `${this.commitSha} has been deployed!
179
- **Commit:** \`${this.commitSha}\`
180
- **Stage:** \`${this.stage}\`
181
- **URL:** [${httpApiUrl}](${httpApiUrl}) (exclusively for this PR)
+
182
+Note:
183
+ - This stage (\`${this.stage}\`) and all resources will be deleted when the PR is closed.
184
`,
185
owner: context.repo.owner,
186
repo: context.repo.repo,
0 commit comments