[minor] update: remove wire branch for gRPC id out in Create Measurement.vi
#723
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: PR | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_call: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run_g_tests: | |
name: Run LabVIEW Tests | |
if: ${{ github.repository == 'ni/measurement-plugin-labview' || github.event.pull_request.head.repo.full_name == 'ni/measurement-plugin-labview' }} | |
uses: ./.github/workflows/run_g_tests.yml | |
run_vi_analyzer: | |
name: Run VI Analyzer | |
if: ${{ github.repository == 'ni/measurement-plugin-labview' || github.event.pull_request.head.repo.full_name == 'ni/measurement-plugin-labview' }} | |
uses: ./.github/workflows/run_vi_analyzer.yml | |
run_pr_commenter: | |
name: Run PR Commenter | |
if: ${{(contains(github.event.pull_request.body, 'RUN_G_DIFF_CHECK') || | |
contains(github.event.pull_request.body, '[x] <!--G_DIFF_CHECK-->')) && | |
(github.repository == 'ni/measurement-plugin-labview' || | |
github.event.pull_request.head.repo.full_name == 'ni/measurement-plugin-labview') }} | |
uses: ./.github/workflows/run_pr_commenter.yml |