Skip to content

Commit 367728d

Browse files
committed
fix workflow
1 parent a153e36 commit 367728d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/commentOnNativeFileChanged.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ on:
1414
jobs:
1515
commentOnNativeFilesChanged:
1616
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 }}
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Comment
20+
run: |
21+
gh pr comment ${{ steps.getMergedPullRequest.outputs.number }} --body \
22+
":warning: This PR changes native code. It may cause problems in Hybrid App. Please notify people working on it to review those changes. :warning:"
23+
env:
24+
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)