Skip to content

Commit

Permalink
Review comments fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Venkata Challa committed Jan 4, 2024
1 parent 0d71161 commit e607791
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/actions/deploy-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,3 @@ runs:
env:
DOCKER_IMAGE_TAG: ${{ inputs.docker-image }}
PR_NUMBER: ${{ inputs.pull-request-number }}

- name: Get application URL
id: get-app-url
shell: bash
run: |
url1="https://track-and-pay-${{ inputs.pull-request-number }}.test.teacherservices.cloud"
echo "url1=${url1}" >> $GITHUB_OUTPUT
url2="https://manage-school-placements-${{ inputs.pull-request-number }}.test.teacherservices.cloud"
echo "url2=${url2}" >> $GITHUB_OUTPUT
9 changes: 9 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@ jobs:
azure-credentials: ${{ secrets.AZURE_CREDENTIALS }}
pull-request-number: ${{ github.event.number }}

- name: Get application URL
id: get-app-url
shell: bash
run: |
url1="https://track-and-pay-${{ inputs.pull-request-number }}.test.teacherservices.cloud"
echo "url1=${url1}" >> $GITHUB_OUTPUT
url2="https://manage-school-placements-${{ inputs.pull-request-number }}.test.teacherservices.cloud"
echo "url2=${url2}" >> $GITHUB_OUTPUT
- name: Post comment to Pull Request ${{ github.event.number }}
if: ${{ github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@v2
Expand Down

0 comments on commit e607791

Please sign in to comment.