[No QA] Fix log email race condition by capturing email per log line #34485
Workflow file for this run
This file contains hidden or 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: Verify Podfile | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches-ignore: [staging, production] | |
| paths: | |
| - ios/** | |
| - "package.json" | |
| - "package-lock.json" | |
| jobs: | |
| verify: | |
| if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]' | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| # v4 | |
| uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
| - name: Setup Node | |
| uses: ./.github/actions/composite/setupNode | |
| - name: Verify podfile | |
| run: ./.github/scripts/verifyPodfile.sh |