Dependabot Batcher: Scheduled #1
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: 'Dependabot Batcher: Scheduled' | |
on: | |
schedule: | |
- cron: '0 9 * * 5' | |
jobs: | |
dependabot-batcher: | |
name: 'Combine Dependabot PRs' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.BATCHER_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: 'Dependabot Batcher' | |
uses: Legal-and-General/[email protected] | |
with: | |
token: ${{ secrets.BATCHER_TOKEN }} | |