We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce72d4 commit 5e745bcCopy full SHA for 5e745bc
.github/workflows/lint-format.yml
@@ -98,6 +98,19 @@ jobs:
98
- name: Generate diff
99
run: git diff HEAD > javaformat-fixes.patch
100
if: ${{ failure() }}
101
+ - uses: actions/upload-artifact@v4
102
+ with:
103
+ name: javaformat fixes
104
+ path: javaformat-fixes.patch
105
+ if: ${{ failure() }}
106
+ - name: Write to job summary
107
+ run: |
108
+ echo '```diff' >> $GITHUB_STEP_SUMMARY
109
+ cat javaformat-fixes.patch >> $GITHUB_STEP_SUMMARY
110
+ echo '' >> $GITHUB_STEP_SUMMARY
111
+ echo '```' >> $GITHUB_STEP_SUMMARY
112
113
+
114
documentation:
115
name: "Documentation"
116
runs-on: ubuntu-22.04
0 commit comments