Skip to content

Commit

Permalink
chore: resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Dec 3, 2024
1 parent 5a161e7 commit a3bebb0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .github/auto_request_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ options:
ignore_draft: true
ignored_keywords:
- WIP
number_of_reviewers: 3
number_of_reviewers: 3

Check failure on line 18 in .github/auto_request_review.yml

View workflow job for this annotation

GitHub Actions / yamllint

18:3 [new-line-at-end-of-file] no new line character at the end of file

Check failure on line 18 in .github/auto_request_review.yml

View workflow job for this annotation

GitHub Actions / yamllint

18:1 [trailing-spaces] trailing spaces
32 changes: 16 additions & 16 deletions .github/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,82 +3,82 @@ rollkit/.github:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "docker" }, { ecosystem: "github-actions" }, { ecosystem: "npm" }]
deps: [{ecosystem: "docker"}, {ecosystem: "github-actions"}, {ecosystem: "npm"}]
rollkit/astria-sequencer:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/avail-da:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/based-sequencer:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "docker" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "docker"}, {ecosystem: "github-actions"}]
rollkit/bitcoin-da:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/centralized-sequencer:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "docker" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "docker"}, {ecosystem: "github-actions"}]
rollkit/cosmos-sdk-starter:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/docs:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "npm" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "npm"}, {ecosystem: "github-actions"}]
rollkit/go-da:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/go-execution:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/go-execution-abci:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/go-execution-evm:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/go-sequencing:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]
rollkit/local-da:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "docker" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "docker"}, {ecosystem: "github-actions"}]
rollkit/rollkit:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "docker" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "docker"}, {ecosystem: "github-actions"}]
rollkit/template-da-repo:
- source: .github/dependabot.njk
dest: .github/dependabot.yml
template:
deps: [{ ecosystem: "gomod" }, { ecosystem: "github-actions" }]
deps: [{ecosystem: "gomod"}, {ecosystem: "github-actions"}]

# Use groups for common files that have no differences
group:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/approve_merge_bots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: "Approve and Merge Dependabot PRs"
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
name: "Approve and Merge RollkitBot PRs"
if: ${{ github.actor == 'RollkitBot' && contains(github.event.pull_request.labels.*.name, 'action sync') }}
runs-on: ubuntu-latest
permissions:
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
Expand All @@ -53,4 +53,4 @@ jobs:
gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
PAT: ${{secrets.PR_APPROVE_PAT_TBD}}
PAT: ${{secrets.PR_APPROVE_PAT_TBD}}

0 comments on commit a3bebb0

Please sign in to comment.