Fetch from source #19
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: Fetch from source | |
on: | |
schedule: | |
- cron: 0 0 * * 2,5 | |
workflow_dispatch: | |
jobs: | |
Get-Source: | |
env: | |
FETCH_URL: 'https://youtube.fandom.com/es/wiki/MediaWiki:Common.js?action=raw' | |
name: Fetch and commit source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: echo '[INFO] Setting Git up...' | |
- run: git config --global user.name 'Actions'; git config --global user.email '[email protected]' | |
- run: echo "[INFO] Scheduled run each 0:00 UTC every Tuesday and Friday" | |
- run: echo "[INFO] Fetching from site..." | |
- run: echo "[INFO] $GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" | |
- run: wget -P /home/runner/work/Common.js -O Common.js '${{env.FETCH_URL}}' | |
- run: git add Common.js | |
- run: git commit -m 'Fetch latest revision from URL' && git push -u origin main || echo '[INFO] Source is the same as repository. Skipping push...' | |
- run: echo '[EXIT] Job done!'; exit 0 |