chore(#8412): fix death reporting e2e test #1397
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 compose URLs | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
env: | |
INTERNAL_CONTRIBUTOR: ${{ secrets.AUTH_MARKET_URL && 'true' }} | |
jobs: | |
replace-pr-tokens-with-staging-URLs: | |
runs-on: ubuntu-latest | |
name: Updates pull requests body with URLs we want to replace | |
steps: | |
- name: checkout | |
if: ${{ env.INTERNAL_CONTRIBUTOR }} | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
#ref: 7848-add-gh-action-for-staging-urls | |
- name: Search-Replace PR Body | |
if: ${{ env.INTERNAL_CONTRIBUTOR }} | |
uses: ./.github/actions/update-staging-url-placeholders | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |