Skip to content

Commit

Permalink
[CI] build-dev: skip fix:i18n (open-telemetry#5564)
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin authored Nov 8, 2024
1 parent 1d87449 commit fc10be9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:

- run: npm run log:test-and-fix
env:
FIX_MOST_SKIP: i18n|refcache|submodule
PIN_SKIP: ${{ inputs.submodule_path_regex }}

- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"_diff:fail": "git diff --name-only --exit-code || exit 1",
"_fail": "exit 1",
"_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",
"_fix:most": "npm run all -- $(npm -s run _list:fix:* | grep -Ev 'refcache|submodule')",
"_fix:most": "npm run seq -- $(npm -s run _list:fix:* | grep -Ev \"${FIX_MOST_SKIP:-refcache|submodule}\")",
"_get:no": "echo SKIPPING get operation",
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 999}",
"_hugo": "hugo --cleanDestinationDir",
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-markdown-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ symlink_targets="content-modules/opentelemetry-go/example content-modules/opente

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

0 comments on commit fc10be9

Please sign in to comment.