Commit f2390fb 1 parent a153e36 commit f2390fb Copy full SHA for f2390fb
File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 11
11
- ' **.mm'
12
12
- ' **.h'
13
13
14
+
15
+ env :
16
+ PULL_REQUEST_NUMBER : ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }}
17
+
14
18
jobs :
15
19
commentOnNativeFilesChanged :
16
20
name : Create comment
17
- run : |
18
- gh pr comment ${{ steps.getMergedPullRequest.outputs.number }} --body \
19
- ":warning: This PR changes native code. It may cause problems in Hybrid App. Please notify people working on it to review those changes. :warning:"
20
- env :
21
- GITHUB_TOKEN : ${{ github.token }}
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - name : Comment
24
+ run : |
25
+ gh pr comment ${{ env.PULL_REQUEST_NUMBER }} --body \
26
+ ":warning: This PR changes native code. It may cause problems in Hybrid App. Please notify people working on it to review those changes. :warning:"
27
+ env :
28
+ GITHUB_TOKEN : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments