Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 9fffae2

Browse files
authored
update README.md (#88)
<!-- This is an auto-generated comment: release notes by openai --> ### Summary by OpenAI New Feature: This pull request adds a new `pull_request_review_comment` event type and modifies the `concurrency` section to cancel in-progress jobs. It also adds a new input parameter `review_comment_lgtm` to the `jobs` section. These changes provide more flexibility for users when setting up their workflows. <!-- end of auto-generated comment: release notes by openai -->
1 parent a1c2adf commit 9fffae2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,16 @@ permissions:
150150
151151
on:
152152
pull_request_target:
153+
types: [opened, synchronize, reopened]
154+
pull_request_review_comment:
155+
types: [created]
156+
157+
concurrency:
158+
group:
159+
${{ github.repository }}-${{ github.event.number || github.head_ref ||
160+
github.sha }}-${{ github.workflow }}-${{ github.event_name ==
161+
'pull_request_review_comment' && 'pr_comment' || 'pr' }}
162+
cancel-in-progress: ${{ github.event_name != 'pull_request_review_comment' }}
153163
154164
jobs:
155165
review:
@@ -161,6 +171,7 @@ jobs:
161171
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
162172
with:
163173
debug: false
174+
review_comment_lgtm: false
164175
```
165176

166177
See also:

0 commit comments

Comments
 (0)