Skip to content

Commit

Permalink
Replace dependabot with GitHub Action (#356)
Browse files Browse the repository at this point in the history
* Replace dependabot with GitHub Action

* Use commit SHA instead of tag

Co-authored-by: Marcelo Salloum dos Santos <marcelo@stellar.org>

* Update issue description

Co-authored-by: Marcelo Salloum dos Santos <marcelo@stellar.org>
  • Loading branch information
quietbits and marcelosalloum authored Oct 18, 2021
1 parent 25455b2 commit 2327650
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/dependabot.yml

This file was deleted.

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 2327650

Please sign in to comment.