Skip to content

Commit

Permalink
Dependabot and Fork Sync (ethereum-optimism#93)
Browse files Browse the repository at this point in the history
* .github: add sync fork workflow and update dependabot to only check .github and go.mod

* .github: update dependabot.yml
  • Loading branch information
MSevey authored May 24, 2023
1 parent 5b97ddc commit 521cd32
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: 2
updates:
# Check for updates on our docker image and for celestia-node
- package-ecosystem: docker
directory: "/ops/docker"
directory: "/ops-bedrock"
schedule:
interval: daily
open-pull-requests-limit: 10
Expand All @@ -14,18 +15,11 @@ updates:
open-pull-requests-limit: 10
labels:
- dependencies
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- dependencies
# Check for updates on celestia packages
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- automerge
- dependencies
18 changes: 18 additions & 0 deletions .github/workflows/fork-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Sync Fork

on:
schedule:
- cron: '*/30 * * * *' # every 30 minutes
workflow_dispatch: # on button click

jobs:
sync:

runs-on: ubuntu-latest

steps:
- uses: tgymnich/fork-sync@v1.8
with:
owner: llvm
base: celesita-develop
head: develop

0 comments on commit 521cd32

Please sign in to comment.