Skip to content

deps: bump netty-transport-native-unix-common from 4.1.94.Final to 4.1.95.Final #261

deps: bump netty-transport-native-unix-common from 4.1.94.Final to 4.1.95.Final

deps: bump netty-transport-native-unix-common from 4.1.94.Final to 4.1.95.Final #261

Workflow file for this run

# This workflow auto merges all dependabot updates except major updates.
name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.6.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto merge
if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch' }}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}