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.38 to 0.30.39 #122

Bump github.com/findy-network/findy-wrapper-go from 0.30.38 to 0.30.39

Bump github.com/findy-network/findy-wrapper-go from 0.30.38 to 0.30.39 #122

Workflow file for this run

name: "pr-comment"
on:
pull_request:
types: [labeled]
jobs:
comment:
if: ${{ github.event.label.name == 'dev' }}
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
- name: Add comment to PR
run: gh pr comment $PR --body "PR created by $USER"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.number }}
USER: ${{ github.event.pull_request.user.login }}