Awesome lists
Attachments
History
Blame
View Source
Documentation
Toggle dark mode
Login
Home
A - Z
Changelog
An Otter Wiki
.github
workflows
repo linter.sh
405926
Commit
405926
2026-04-20 01:04:38
Lai Jia Yang
: Fix error handling in repo linter (#4104)
.github/workflows/repo_linter.sh
..
@@ 1,4 1,5 @@
#!/bin/bash
+
set -eo pipefail
# Find the repo in the git diff and then set it to an env variables.
REPO_TO_LINT=$(
@@ 15,7 16,7 @@
echo "No new link found in the format: https://....#readme"
else
echo "Cloning $REPO_TO_LINT"
-
mkdir cloned
+
mkdir -p cloned
cd cloned
git clone "$REPO_TO_LINT" .
npx awesome-lint
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9