Skip to content

[OUDS] Change boosted package to ouds-web #524

[OUDS] Change boosted package to ouds-web

[OUDS] Change boosted package to ouds-web #524

name: Update PR Description Netlify Preview URLs
on:
pull_request_target:
types:
- opened
jobs:
track_pr:
runs-on: ubuntu-latest
steps:
- name: Update PR Description
run: |
PR_UPDATED_BODY="$(
gh api /repos/$OWNER/$REPO/pulls/$PR_NUMBER | jq -r '.body' | sed 's/{your_pr_number}/${{ env.PR_NUMBER }}/g'
)"
gh api --method PATCH /repos/$OWNER/$REPO/pulls/$PR_NUMBER -f body="$PR_UPDATED_BODY"
env:
GITHUB_TOKEN: ${{ secrets.BOOSTED_MOD_PERSONAL_TOKEN_CLASSIC }}
OWNER: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}
PR_NUMBER: ${{ github.event.number }}