We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a153e36 commit 367728dCopy full SHA for 367728d
.github/workflows/commentOnNativeFileChanged.yml
@@ -14,8 +14,11 @@ on:
14
jobs:
15
commentOnNativeFilesChanged:
16
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 }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Comment
+ run: |
+ 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