Skip to content

Add support for Aventus chains and allow force decorating relay chainspec (useful for solo chains) #895

Add support for Aventus chains and allow force decorating relay chainspec (useful for solo chains)

Add support for Aventus chains and allow force decorating relay chainspec (useful for solo chains) #895

Workflow file for this run

name: Dependabot Auto Approve/Merge
on: pull_request
permissions:
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve the PR
if: ${{ steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor'}}
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}