Banner for newer version of Boosted #145
Workflow file for this run
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: Update PR Description Netlify Preview URLs | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
track_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get 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' | |
)" | |
echo 'PR_UPDATED_BODY='$PR_UPDATED_BODY >> $GITHUB_ENV | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOOSTED_MOD_PERSONAL_TOKEN_CLASSIC }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
PR_NUMBER: ${{ github.event.number }} | |
- name: Update PR Description | |
run: | | |
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 }} |