mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-24 05:23:05 +00:00
update workflow (#2149)
This commit is contained in:
parent
dff663fd94
commit
f4b19bae5f
1 changed files with 3 additions and 2 deletions
5
.github/workflows/validate-pull.yml
vendored
5
.github/workflows/validate-pull.yml
vendored
|
@ -188,10 +188,11 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Get Description
|
- name: Get Description
|
||||||
|
env:
|
||||||
|
DESC: ${{ github.event.pull_request.body }}
|
||||||
id: get-description
|
id: get-description
|
||||||
run: |
|
run: |
|
||||||
body='${{ github.event.pull_request.body }}'
|
body=$(echo "$DESC" | sed -n '/## Description/,/##/{/## Description/b;/##/b;p}')
|
||||||
body=$(echo "$body" | sed -n '/## Description/,/##/{/## Description/b;/##/b;p}')
|
|
||||||
body=$(echo $body|tr -d '\n')
|
body=$(echo $body|tr -d '\n')
|
||||||
echo "description=$body" >> $GITHUB_OUTPUT
|
echo "description=$body" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue