-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
135 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: 2 | ||
updates: | ||
{% for dep in deps %} | ||
- package-ecosystem: {{dep.ecosystem}} | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
groups: | ||
patch-updates: | ||
applies-to: version-updates | ||
update-types: | ||
- "patch" | ||
- "minor" | ||
commit-message: | ||
include: "scope" | ||
prefix: "build" | ||
{% endfor %} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Use individual repo settings for files that differ | ||
rollkit/.github: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
Check failure on line 6 in .github/sync.yml GitHub Actions / yamllint
Check failure on line 6 in .github/sync.yml GitHub Actions / yamllint
Check failure on line 6 in .github/sync.yml GitHub Actions / yamllint
|
||
rollkit/astria-sequencer: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
Check failure on line 11 in .github/sync.yml GitHub Actions / yamllint
Check failure on line 11 in .github/sync.yml GitHub Actions / yamllint
Check failure on line 11 in .github/sync.yml GitHub Actions / yamllint
|
||
rollkit/avail-da: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
Check failure on line 16 in .github/sync.yml GitHub Actions / yamllint
|
||
rollkit/bitcoin-da: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/centralized-sequencer: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/cosmos-sdk-starter: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/cosmwasm: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/docs: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/go-da: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/go-execution: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/go-execution-abci: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/go-sequencing: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/local-da: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/rollkit: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
rollkit/template-da-repo: | ||
- source: .github/dependabot.njk | ||
dest: .github/dependabot.yml | ||
template: | ||
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }] | ||
|
||
# Use groups for common files that have no differences | ||
group: | ||
repos: | | ||
rollkit/.github | ||
rollkit/astria-sequencer | ||
rollkit/avail-da | ||
rollkit/bitcoin-da | ||
rollkit/centralized-sequencer | ||
rollkit/cosmos-sdk-starter | ||
rollkit/cosmwasm | ||
rollkit/docs | ||
rollkit/go-da | ||
rollkit/go-execution | ||
rollkit/go-execution-abci | ||
rollkit/go-sequencing | ||
rollkit/local-da | ||
rollkit/rollkit | ||
rollkit/template-da-repo | ||
files: | ||
- .github/workflows/semantic_pull_request.yml | ||
- .github/workflows/semantic_release.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Sync Files | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
- name: Run GitHub File Sync | ||
uses: BetaHuhn/repo-file-sync-action@v1 | ||
with: | ||
GH_PAT: ${{ secrets.SYNC }} | ||
PR_LABELS: "action sync" | ||
COMMIT_PREFIX: "chore: " | ||
COMMIT_EACH_FILE: false |