Skip to content

Commit fc10be9

Browse files
authored
[CI] build-dev: skip fix:i18n (open-telemetry#5564)
1 parent 1d87449 commit fc10be9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build-dev.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737

3838
- run: npm run log:test-and-fix
3939
env:
40+
FIX_MOST_SKIP: i18n|refcache|submodule
4041
PIN_SKIP: ${{ inputs.submodule_path_regex }}
4142

4243
- uses: actions/upload-artifact@v4

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"_diff:fail": "git diff --name-only --exit-code || exit 1",
2222
"_fail": "exit 1",
2323
"_filename-error": "echo 'ERROR: the following files violate naming conventions; fix using: `npm run fix:filenames`'; echo; npm run -s _ls-bad-filenames; exit 1",
24-
"_fix:most": "npm run all -- $(npm -s run _list:fix:* | grep -Ev 'refcache|submodule')",
24+
"_fix:most": "npm run seq -- $(npm -s run _list:fix:* | grep -Ev \"${FIX_MOST_SKIP:-refcache|submodule}\")",
2525
"_get:no": "echo SKIPPING get operation",
2626
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 999}",
2727
"_hugo": "hugo --cleanDestinationDir",

scripts/check-markdown-wrapper.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ symlink_targets="content-modules/opentelemetry-go/example content-modules/opente
77

88
for symlink_target in $symlink_targets; do
99
if [[ ! -e $symlink_target ]]; then
10-
echo "WARNING: required symlink target does not exist, creating it: $symlink_target"
10+
echo "INFO: required symlink target does not exist, creating it: $symlink_target"
1111
(set -x; mkdir -p "$symlink_target")
1212
fi
1313
done

0 commit comments

Comments
 (0)