Skip to content

Commit

Permalink
hotifx
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Feb 2, 2024
1 parent 8477c10 commit dfa01cd
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
on:
push:
pull_request:
branches:
- main
- tf-actions
Expand Down Expand Up @@ -75,9 +75,13 @@ jobs:
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Working Directory: \`${{ env.tf_actions_working_dir }}\`, Workflow: \`${{ github.workflow }}\`*`;
github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body
})
const pr_number = context.payload.pull_request.number
if (pr_number) {
github.rest.issues.createComment({
issue_number: pr_number,
owner: context.repo.owner,
repo: context.repo.repo,
body
})
}

0 comments on commit dfa01cd

Please sign in to comment.