Skip to content

schedule-actions

schedule-actions #4108

name: schedule-actions
on:
schedule:
- cron: 40 3,11,19 * * *
jobs:
build-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: scripts/install
- run: git config --global user.name github-actions
- run: git config --global user.email [email protected]
- run: npm run schedule-action
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}