Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Bump github.com/findy-network/findy-wrapper-go from 0.30.49 to 0.30.50 #439

Bump github.com/findy-network/findy-wrapper-go from 0.30.49 to 0.30.50

Bump github.com/findy-network/findy-wrapper-go from 0.30.49 to 0.30.50 #439

Workflow file for this run

name: "pr-target"
on:
pull_request_target:
jobs:
# label with "dev" to enable PR filtering
label:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
steps:
- id: label-the-PR
uses: actions/labeler@v4
# automerge successful dependabot PRs
dependabot:
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
- name: Enable auto-merge for Dependabot PRs
if: ${{steps.dependabot-metadata.outputs.target-branch == 'dev'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}