We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 201b814 commit 4ba91dbCopy full SHA for 4ba91db
.github/workflows/feast_plan.yml
@@ -31,12 +31,12 @@ jobs:
31
IS_TEST: "True"
32
run: |
33
body=$(cd module_0/feature_repo_aws; feast plan)
34
+ echo $body
35
+ body=$(echo $body | tail -n +2)
36
body="${body//'%'/'%25'}"
37
body="${body//$'\n'/'%0A'}"
38
body="${body//$'\r'/'%0D'}"
39
echo $body
- body=$(echo $body | tail -n +2)
- echo $body
40
echo "::set-output name=body::$body"
41
42
# Post a comment on the PR with the results of `feast plan`
0 commit comments