This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
⬆️ Update tj-actions/changed-files action to v41 #7667
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Restart backend preview | |
on: | |
issue_comment: | |
types: [edited] | |
jobs: | |
restart_preview: | |
name: 'Restart backend preview' | |
runs-on: ubuntu-latest | |
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '<!-- BACKEND PREVIEW BOT -->') }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Find comment | |
id: fc | |
uses: peter-evans/find-comment@v2 | |
with: | |
token: ${{ secrets.REPO_PAT }} | |
issue-number: ${{ github.event.issue.number }} | |
body-includes: '<!-- BACKEND PREVIEW BOT -->' | |
- name: Get formatted branch name, to get resource group & container group name & set backend URL from previous comment | |
id: env_vars | |
if: contains(${{ steps.fc.outputs.comment_body }}, '- [x] check this box to restart the backend preview, if you are getting errors.') | |
run: | | |
export BRANCH_NAME=$(gh pr view $PR_NO --repo $REPO --json headRefName --jq '.headRefName') | |
echo "BRANCH_NAME_FORMATTED=$(echo "$BRANCH_NAME" | sed -e 's/-*login-*//g' -e 's/renovate\///g' -e 's/frontend/f/g' -e 's/backend/b/g' -e 's/[\/_\.]/-/g' | cut -c 1-16 | sed -e s'/[-_]$//g')" >> $GITHUB_OUTPUT | |
echo "BACKEND_URL=$(echo "${{ steps.fc.outputs.comment_body }}" | grep -o 'https://.*\.io')" >> $GITHUB_OUTPUT | |
env: | |
PR_NO: ${{ github.event.issue.number }} | |
REPO: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.REPO_PAT }} | |
- name: Sign in to Azure | |
uses: azure/login@v1 | |
with: | |
creds: '{"clientId":"${{ secrets.ARM_CLIENT_ID }}","clientSecret":"${{ secrets.ARM_CLIENT_SECRET }}","subscriptionId":"${{ secrets.ARM_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.ARM_TENANT_ID }}"}' | |
- name: Restart container | |
if: contains(${{ steps.fc.outputs.comment_body }}, '- [x] check this box to restart the backend preview, if you are getting errors.') | |
# Resource group name & container group name are the same. | |
run: az container restart --resource-group $GROUP_NAME --name $GROUP_NAME | |
env: | |
GROUP_NAME: 'echo-web-${{ steps.env_vars.outputs.BRANCH_NAME_FORMATTED }}' | |
ARM_CLIENT_SECRET: ${{ secrets.ARM_CLIENT_SECRET }} | |
- name: Update comment to remove checkbox | |
if: contains(${{ steps.fc.outputs.comment_body }}, '- [x] check this box to restart the backend preview, if you are getting errors.') | |
uses: peter-evans/create-or-update-comment@v2 | |
with: | |
token: ${{ secrets.REPO_PAT }} | |
comment-id: ${{ steps.fc.outputs.comment-id }} | |
edit-mode: replace | |
body: | | |
<!-- BACKEND PREVIEW BOT --> | |
**beep boop!** | |
I just deployed a backend preview to ${{ steps.env_vars.outputs.BACKEND_URL }} :rocket: | |
- [ ] check this box to restart the backend preview, if you are getting errors. |