Skip to content

Commit

Permalink
Outputs are restyled-x
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Jul 15, 2024
1 parent c83f08d commit ec31565
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
- run: |
cat <<'EOM'
Differences? ${{ steps.restyler.outputs.differences }}
Branch: ${{ steps.restyler.outputs.restyle-branch-name }}
PR Title: ${{ steps.restyler.outputs.restyle-pr-title }}
Branch: ${{ steps.restyler.outputs.restyled-branch-name }}
PR Title: ${{ steps.restyler.outputs.restyled-pr-title }}
PR Body:
${{ steps.restyler.outputs.restyle-pr-body }}
${{ steps.restyler.outputs.restyled-pr-body }}
EOM
deploy:
Expand Down
6 changes: 3 additions & 3 deletions src/Restyler/RestyleResult.hs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ setRestylerResultOutputs pr = \case
appendGitHubOutput
$ unlines
[ "differences=true"
, "restyle-branch-name=restyled/" <> pr.head.ref
, "restyle-pr-title=Restyle " <> pr.title
, "restyle-pr-body<<EOM"
, "restyled-branch-name=restyled/" <> pr.head.ref
, "restyled-pr-title=Restyle " <> pr.title
, "restyled-pr-body<<EOM"
, Content.pullRequestDescription Nothing pr.number results
, "EOM"
]
Expand Down

0 comments on commit ec31565

Please sign in to comment.