Skip to content

Commit 9ae9928

Browse files
add triggering pr review
Signed-off-by: Bernhard Kaindl <bernhard.kaindl@cloud.com>
1 parent 158a9e4 commit 9ae9928

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#
2+
# Trigger a review for the pull request using .github/workflows/review-pr.yml
3+
#
4+
name: Trigger PR review
5+
on: pull_request
6+
jobs:
7+
upload_pr_event:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Save event payload
11+
run: cp "$GITHUB_EVENT_PATH" event.json
12+
- name: Upload event payload
13+
uses: actions/upload-artifact@v4
14+
with:
15+
name: pr-event
16+
path: event.json

0 commit comments

Comments
 (0)