Bump github.com/cli/go-gh/v2 from 2.11.1 to 2.11.2 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.' | |
}) |