Skip to content

Commit

Permalink
comment: input dynamic domain
Browse files Browse the repository at this point in the history
  • Loading branch information
juliamrch committed Nov 13, 2024
1 parent eaf75d9 commit f1b986d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ runs:
with:
script: |
const issue_number = context.payload.pull_request.number;
const message = `Deployment has finished 👁️👄👁️ Your app is available [here](https://${{ github.event.pull_request.base.repo.name }}-PR-${{ github.event.number }}.cleverapps.io)`;
const message = `Deployment has finished 👁️👄👁️ Your app is available [here](https://${{ inputs.domain }})`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
Expand All @@ -101,7 +101,7 @@ runs:
with:
script: |
const issue_number = context.payload.pull_request.number;
const message = `🚀 You updated your review app. Check it [here](https://${{ github.event.pull_request.base.repo.name }}-PR-${{ github.event.number }}.cleverapps.io)`;
const message = `🚀 You updated your review app. Check it [here](https://${{ inputs.domain }})`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down

0 comments on commit f1b986d

Please sign in to comment.