Skip to content

Commit

Permalink
Add GitHub Action to update dependencies monthly (stellar#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits authored Nov 9, 2021
1 parent 0300b47 commit 449e7d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/update_deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Monthly dependency updates
on:
schedule:
# First of every month
- cron: 0 0 1 * *

jobs:
create_issue:
name: Update dependencies
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Update dependencies
uses: imjohnbo/issue-bot@7e438653c0da13f4f79678a56bb9ecbd9dcc26ac
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: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 449e7d3

Please sign in to comment.