We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1dabb9 commit 25db01fCopy full SHA for 25db01f
.github/workflows/deploy-to-control-plane-review.yml
@@ -58,6 +58,18 @@ jobs:
58
echo "APP_NAME=qa-react-webpack-rails-tutorial-pr-${{ env.PR_NUMBER }}" >> $GITHUB_ENV
59
echo "App Name: ${{ env.APP_NAME }}"
60
61
+ - name: Add GitHub Comment
62
+ if: ${{ github.event_name == 'issue_comment' }}
63
+ uses: actions/github-script@v4
64
+ with:
65
+ script: |
66
+ github.rest.issues.createComment({
67
+ issue_number: context.issue.number,
68
+ owner: context.repo.owner,
69
+ repo: context.repo.repo,
70
+ body: "We started working on your review-app deployment. You can track progress in the "Actions" Tab on Github."
71
+ })
72
+
73
- uses: ./.github/actions/deploy-to-control-plane
74
with:
75
app_name: ${{ env.APP_NAME }}
0 commit comments