-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Atsumi-Gakuto
committed
Apr 4, 2024
1 parent
2a8b306
commit dac7634
Showing
4 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Comment when changes requested | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- Trigger comment action | ||
types: | ||
- completed | ||
|
||
jobs: | ||
call_workflow: | ||
name: Call workflow | ||
permissions: | ||
pull-requests: write | ||
uses: Gakuto1112/PublicPullRequestWorkflows/.github/workflows/comment_when_changes_requested_core.yml@main |
11 changes: 11 additions & 0 deletions
11
.github/workflows/comment_when_changes_requested_trigger.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Trigger comment action | ||
|
||
on: | ||
pull_request_review: | ||
types: | ||
- submitted | ||
|
||
jobs: | ||
call_workflow: | ||
name: Call workflow | ||
uses: Gakuto1112/PublicPullRequestWorkflows/.github/workflows/comment_when_changes_requested_trigger_core.yml@main |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
name: Request review | ||
|
||
on: | ||
pull_request_target: | ||
workflow_run: | ||
workflows: | ||
- Trigger request review action | ||
types: | ||
- opened | ||
- ready_for_review | ||
- completed | ||
|
||
jobs: | ||
call_workflow: | ||
name: Call workflow | ||
permissions: | ||
pull-requests: write | ||
uses: Atsumi-Gakuto/MyAutoRequestReview/.github/workflows/request_review.yml@main | ||
uses: Gakuto1112/PublicPullRequestWorkflows/.github/workflows/request_review_core.yml@main | ||
with: | ||
reviewer: Atsumi-Gakuto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Trigger request review action | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- ready_for_review | ||
|
||
jobs: | ||
call_workflow: | ||
name: Call workflow | ||
uses: Gakuto1112/PublicPullRequestWorkflows/.github/workflows/request_review_trigger_core.yml@main | ||
with: | ||
reviewer: Atsumi-Gakuto |