Skip to content

Commit 90ef953

Browse files
authored
Merge branch 'main' into main
2 parents cdb854f + d43062b commit 90ef953

File tree

577 files changed

+184707
-64881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

577 files changed

+184707
-64881
lines changed

.github/.cSpellWords.txt

Lines changed: 918 additions & 0 deletions
Large diffs are not rendered by default.

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
5555

5656

5757
## Getting your pull request merged
58-
All pull requests must be approved by our review team before it can be merged in. We appreciate your patience while pull requests are reviewed. The time it takes to review will depend on complexity and consideration of wider implications.
58+
All pull requests must be approved by our review team before it can be merged in. We appreciate your patience while pull requests are reviewed. The time it takes to review will depend on complexity and consideration of wider implications. For more information on the pull request process, please see the documentation [here](pull_request_process.md).
5959

6060

6161
## Finding contributions to work on

.github/actions/url_verifier.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ function test {
2828

2929
for UNIQ_URL in ${!dict[@]} # loop urls
3030
do
31-
CURL_RES=$(curl -si --user-agent "$(USER_AGENT)" ${UNIQ_URL} 2>/dev/null| head -n 1 | cut -f 2 -d ' ')
31+
CURL_RES=$(curl -si --user-agent "${USER_AGENT}" ${UNIQ_URL} 2>/dev/null| head -n 1 | cut -f 2 -d ' ')
3232
RES=$?
3333

34+
echo "================================="
35+
echo "Checking URL: ${UNIQ_URL}"
36+
3437
if [ "${CURL_RES}" == '' -o "${CURL_RES}" != '200' ]
3538
then
36-
echo "URL is: ${UNIQ_URL}"
37-
echo "File names: ${dict[$UNIQ_URL]}"
3839
if [ "${CURL_RES}" == '' ] # curl returned an error
3940
then
4041
CURL_RES=$RES
@@ -47,8 +48,10 @@ function test {
4748
else
4849
echo WARNING: Result is: "${CURL_RES}"
4950
fi
50-
echo "================================="
51+
else
52+
echo SUCCESS: Result is: "${CURL_RES}"
5153
fi
54+
echo "================================="
5255
done
5356

5457
if [ "${SCRIPT_RET}" -eq 0 ]

0 commit comments

Comments
 (0)