This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
Status tracking #116531
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Status tracking | |
on: | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check status | |
env: | |
USERNAME: ${{ secrets.USERNAME }} | |
PASSWORD: ${{ secrets.PASSWORD }} | |
TELEGRAM_CHAT_ID: "-1001463677498;-1001287849567" | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
run: | | |
docker build -t tracker:latest . | |
docker run -v ${{ github.workspace }}:/app -e USERNAME=$USERNAME -e PASSWORD=$PASSWORD -e GITHUB_REPOSITORY=$GITHUB_REPOSITORY -e TELEGRAM_CHAT_ID=$TELEGRAM_CHAT_ID -e TELEGRAM_TOKEN=$TELEGRAM_TOKEN tracker:latest | |
git config --global user.email "[email protected]" | |
git config --global user.name "PixelExperience" | |
git add . | |
changed=$(git diff --numstat --cached | wc -l) | |
if [[ "$changed" -eq 0 ]]; then | |
echo "State of status remains same as of previous check. Exiting" | |
exit 0 | |
fi | |
git commit -m "Sync: $(date)" | |
git push |