Skip to content

Commit

Permalink
ci(hotfix-pr-check): use env input from GitHub to read PR body (#2923)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShankarSinghC authored Nov 20, 2023
1 parent 44deeb7 commit 922dc90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hotfix-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:

- name: Get hotfix pull request body
shell: bash
run: |
echo '${{ github.event.pull_request.body }}' > hotfix_pr_body.txt
env:
PR_BODY: ${{ github.event.pull_request.body }}
run: echo $PR_BODY > hotfix_pr_body.txt

- name: Get a list of all original PR numbers
shell: bash
Expand Down

0 comments on commit 922dc90

Please sign in to comment.