Skip to content

Commit fdedb72

Browse files
committed
update
1 parent 808997a commit fdedb72

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: PR comment github action tests
2+
3+
on:
4+
pull_request_review_comment:
5+
types: [created]
6+
7+
jobs:
8+
get-pr-number:
9+
runs-on: ubuntu-22.04
10+
name: Get PR number
11+
steps:
12+
- name: Get PR number
13+
shell: bash
14+
env:
15+
PR_NUMBER: ${{ github.event.pull_request.number }}
16+
run: |
17+
echo "$PR_NUMBER"

0 commit comments

Comments
 (0)