|
#!/bin/bash |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [[ $GITHUB_JOB ]]; then |
|
git config --global user.name 'Yoshi Automation' |
|
git config --global user.email 'yoshi-automation@google.com' |
|
fi |
|
|
|
while read api; |
|
do |
|
name=`echo $api | cut -d '.' -f 1` |
|
API_SUMMARY_PATH=temp/$name.verbose |
|
|
|
if [[ ! -f "temp/$name.sha" ]]; then |
|
if [ $name = "index" ]; then |
|
git add '../docs/dyn/index.md' |
|
commitmsg='chore: update docs/dyn/index.md' |
|
elif [[ -f "$API_SUMMARY_PATH" ]]; then |
|
git add '../googleapiclient/discovery_cache/documents/'$name'.*.json' |
|
git add '../docs/dyn/'$name'_*.html' |
|
commitmsg=`cat $API_SUMMARY_PATH` |
|
else |
|
|
|
continue |
|
fi |
|
git commit -m "$commitmsg" |
|
git rev-parse HEAD>temp/$name'.sha' |
|
git reset |
|
fi |
|
done < temp/changed_files |
|
|
|
|
|
git add "../googleapiclient/discovery_cache/documents/*.json" |
|
git add "../docs/dyn/*.html" |
|
commitmsg='chore(docs): Add new discovery artifacts and artifacts with minor updates' |
|
git commit -m "$commitmsg" |
|
|
|
exit 0 |
|
|