We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a153e36 commit d43a113Copy full SHA for d43a113
.github/workflows/commentOnNativeFileChanged.yml
@@ -14,8 +14,10 @@ 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:
+ run: |
+ gh pr comment ${{ steps.getMergedPullRequest.outputs.number }} --body \
+ ":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