Skip to content

Commit

Permalink
quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Dec 23, 2024
1 parent 8e1e0a7 commit 7ea5c31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/comment-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
pr: ${{ github.event.issue.number }}
workflow_conclusion: "failure" # Format failure -> patches available
allow_forks: false
- run: echo ${{ toJSON(fromJSON(steps.fetch-patches.outputs.artifacts).*.name) }}
- run: echo "${{ toJSON(fromJSON(steps.fetch-patches.outputs.artifacts).*.name) }}"
- name: Check found artifacts
id: check-found-artifacts
run: |
echo "artifacts-found=${{ contains(steps.fetch-patches.outputs.artifacts.*.name, 'javaformat fixes')
&& contains(steps.fetch-patches.outputs.artifacts.*.name, 'wpiformat patches') }}" >> "$GITHUB_OUTPUT"
echo "artifacts-found=${{ contains(fromJSON(steps.fetch-patches.outputs.artifacts).*.name, 'javaformat fixes')
&& contains(fromJSON(steps.fetch-patches.outputs.artifacts).*.name, 'wpiformat patches') }}" >> "$GITHUB_OUTPUT"
- name: Apply patch
run: |
git apply "wpiformat fixes/wpiformat-fixes.patch" --index
Expand Down

0 comments on commit 7ea5c31

Please sign in to comment.