[Sync] YouTube Videos with dependencies #20805
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: "[Sync] YouTube Videos with dependencies" | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
env: | |
GH_STARS_TOKEN: ${{ secrets.GH_STARS_TOKEN }} | |
jobs: | |
external_info: | |
runs-on: ubuntu-latest | |
name: "[Sync] DevSoutinho Youtube Vídeos" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Call Script | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Mario Souto - Bot" | |
node -v | |
ls -la | |
yarn install | |
yarn api start:ci | |
sleep 5 | |
curl --request POST --header 'content-type: application/json' --url 'http://localhost:4000/api/graphql' --data '{"query":"mutation { syncYouTubeVideos { youtubeVideos { title } } }"}' | |
git add . | |
git commit -m "[sync] devSoutinho Youtube Vídeos" || echo "Up to date with main" | |
git push origin HEAD | |
echo "END: Youtube" | |
echo "START: GH_Sync" | |
curl --request POST --header 'content-type: application/json' --url 'http://localhost:4000/api/graphql' --data '{"query":"mutation SyncGitHubContributions { syncGitHubContributions { newContributions { title } } }"}' | |
echo "END: GH_Sync" |