1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00
ocean.js/scripts/commitChanges.sh
2022-05-25 17:12:08 +01:00

23 lines
674 B
Bash
Executable File

# Check if the file has been changed
# Input file
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