Skip to content

Commit d43a113

Browse files
committed
fix workflow
1 parent a153e36 commit d43a113

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/commentOnNativeFileChanged.yml

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

0 commit comments

Comments
 (0)