Resubmit contacts import module #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment on native files changed | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- '**.kt' | |
- '**.java' | |
- '**.swift' | |
- '**.mm' | |
- '**.h' | |
- '**.cpp' | |
- 'AndroidManifest.xml' | |
- 'project.pbxproj' | |
jobs: | |
commentOnNativeFilesChanged: | |
name: Create comment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment | |
run: | | |
gh pr comment ${{ github.event.number }} --body \ | |
":warning: This PR is possibly changing native code. It may cause problems in Hybrid App. Please ask Hybrid App team to review those changes in the Slack open-source channel. The C+ can help you with that. :warning:" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |