mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
22 lines
677 B
Bash
Executable File
22 lines
677 B
Bash
Executable File
# Check if the CodeExamples.md file has been changed
|
|
FILE=CodeExamples.md
|
|
# Timeframe for the comparison
|
|
OLDTIME=60
|
|
# Get current and file times
|
|
CURTIME=$(date +%s)
|
|
FILETIME=$(stat $FILE -c %Y)
|
|
TIMEDIFF=$(expr $CURTIME - $FILETIME)
|
|
|
|
# Check if file older
|
|
if [ $TIMEDIFF -gt $OLDTIME ]; then
|
|
echo "CodeExamples.md file has not been changed"
|
|
else
|
|
echo "CodeExamples.md file has been changed. Committing changes"
|
|
# Stage the file, commit and push
|
|
git status
|
|
git add CodeExamples.md
|
|
git commit -m "Updating CodeExamples.md"
|
|
branch=${GITHUB_HEAD_REF#refs/heads/}
|
|
echo Pushing changes to branch: ${branch}
|
|
git push origin HEAD:${branch} --force
|
|
fi |