Monthly dependency updates #14
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: Monthly dependency updates | |
on: | |
schedule: | |
# First of every other month | |
- cron: 0 0 1 */2 * | |
jobs: | |
create_issue: | |
name: Update dependencies | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Update dependencies | |
uses: imjohnbo/issue-bot@3bee265982b87e730cf6c8dab7f86b68c92f8ef1 | |
with: | |
title: "Update dependencies" | |
body: | | |
Update all project dependencies. | |
``` | |
yarn upgrade-interactive --latest | |
``` | |
Make sure there are no issues in the code editor, code compiles, and it runs without issues in the browser. | |
pinned: false | |
close-previous: true | |
labels: "design-system, dependencies" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |