Skip to content

Commit

Permalink
Merge pull request #1871 from embroider-build/fix-release-plan
Browse files Browse the repository at this point in the history
fix release-plan unlabelled changes PR
  • Loading branch information
mansona authored Apr 10, 2024
2 parents 596abfa + d08ee54 commit dc250f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/plan-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ jobs:
run: |
set +e
pnpm release-plan prepare 2> >(tee -a stderr.log >&2)
pnpm release-plan prepare 2> >(tee -a stderr.txt >&2)
if [ $? -ne 0 ]; then
echo 'text<<EOF' >> $GITHUB_OUTPUT
cat stderr.log >> $GITHUB_OUTPUT
cat stderr.txt >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
else
echo 'text<<EOF' >> $GITHUB_OUTPUT
jq .description .release-plan.json -r >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
rm stderr.txt
fi
env:
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit dc250f8

Please sign in to comment.