Cron / Monday #5
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: 'Cron / Monday' | |
on: | |
schedule: | |
- cron: '0 5 * * 1' # Runs at 05:00, only on Monday | |
jobs: | |
tools-update: | |
name: Tools update | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node setup | |
uses: ./.github/actions/node-setup | |
- uses: VKCOM/gh-actions/shared/node/corepack-up-pr@main | |
with: | |
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} | |
- uses: VKCOM/gh-actions/shared/node/nvmrc-up-pr@main | |
with: | |
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} |