ci(hotfix-pr-check): use env input from GitHub to read PR body (#2923)

This commit is contained in:
Shankar Singh C
2023-11-20 19:29:51 +05:30
committed by GitHub
parent 44deeb7e76
commit 922dc90019

View File

@ -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