Interval Action checking for Blockly updates #1217
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: Interval Action checking for Blockly updates | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
updatePackages: | |
if: github.repository == 'Catrobat/Catblocks' | |
name: Update | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: set remote url | |
run: git remote set-url --push origin https://$GITHUB_ACTOR:${{ secrets.PAT }}@github.com/$GITHUB_REPOSITORY | |
- name: update packages | |
uses: taichi/actions-package-update@master | |
env: | |
AUTHOR_EMAIL: [email protected] | |
AUTHOR_NAME: catrobat-github-bot | |
COMMIT_MESSAGE: BLOCKS-MAINTENANCE update blockly version | |
EXECUTE: "true" | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
UPDATE_COMMAND: yarn | |
with: | |
args: upgrade blockly --latest |