Skip to content

Commit d40e976

Browse files
committed
correct diff file name in summary output
1 parent 2ede2e3 commit d40e976

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/eamxx-gh-clang-format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
flist="${{ steps.changed-files.outputs.all_changed_files }}"
6161
run_cfmt () {
62-
clang-format -i --style=file:"components/eamxx/.clang-format" $1
62+
clang-format -i --style=file:"components/eamxx/.clang-format" $1
6363
}
6464
clang-format --version
6565
for f in ${flist[@]}; do
@@ -115,13 +115,13 @@ jobs:
115115
echo "<details>" >> "${GITHUB_STEP_SUMMARY}"
116116
echo "" >> "${GITHUB_STEP_SUMMARY}"
117117
echo "<summary>" >> "${GITHUB_STEP_SUMMARY}"
118-
echo "### Contents of \`clang-format-patch.diff\`" >> "${GITHUB_STEP_SUMMARY}"
118+
echo 'Contents of \`clang-format-patch.diff\`" >> "${GITHUB_STEP_SUMMARY}"
119119
echo "</summary>" >> "${GITHUB_STEP_SUMMARY}"
120120
echo "To apply this version of the patch, save the text to a local file, " \
121121
"and \`git apply <patch-file>\`, etc., as above." >> "${GITHUB_STEP_SUMMARY}"
122122
echo "" >> "${GITHUB_STEP_SUMMARY}"
123123
echo "\`\`\`" >> "${GITHUB_STEP_SUMMARY}"
124-
cat clang-format-patch.diff >> "${GITHUB_STEP_SUMMARY}"
124+
cat diffiles.txt >> "${GITHUB_STEP_SUMMARY}"
125125
echo "\`\`\`" >> "${GITHUB_STEP_SUMMARY}"
126126
echo "" >> "${GITHUB_STEP_SUMMARY}"
127127
echo "</details>" >> "${GITHUB_STEP_SUMMARY}"

components/eamxx/src/control/atmosphere_driver.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#include <ekat_yaml.hpp>
2222
#include <ekat_std_utils.hpp>
2323

24+
// trigger CI
25+
2426
// The global variable fvphyshack is used to help the initial pgN implementation
2527
// work around some current AD constraints. Search the code for "fvphyshack" to
2628
// find blocks that eventually should be removed in favor of a design that

0 commit comments

Comments
 (0)