fix(docs): add /docs/customize/color-modes
redirection
#207
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: 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 }} |