Skip to content

Bump github.com/cli/go-gh/v2 from 2.11.1 to 2.11.2 #14

Bump github.com/cli/go-gh/v2 from 2.11.1 to 2.11.2

Bump github.com/cli/go-gh/v2 from 2.11.1 to 2.11.2 #14

Workflow file for this run

name: Set expectations on PR
on:
pull_request_target:
types:
- opened
- reopened
jobs:
comment-on-pull-request:
name: Comment on PR to set expectations
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for opening a pull request! I try to review this repo at least once a week.'
})