File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939 # Define a display name:
4040 name : ' Update namespace ToCs'
4141
42- # Only run this job if the pull request was merged (or the job was triggered manually):
43- if : github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
42+ # Only run this job if the pull request was merged and did not have label `automated-pr` (or the job was triggered manually):
43+ if : github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'automated-pr') == false || github.event_name == 'workflow_dispatch'
4444
4545 # Define the type of virtual host machine:
4646 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 4242 # Define a display name:
4343 name : ' Update TypeScript Declarations'
4444
45- # Only run this job if the pull request was merged (or the job was triggered manually):
46- if : github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
45+ # Only run this job if the pull request was merged and did not have label `automated-pr` (or the job was triggered manually):
46+ if : github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'automated-pr') == false || github.event_name == 'workflow_dispatch'
4747
4848 # Define the type of virtual host machine:
4949 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 3939 # Define a display name:
4040 name : ' Update Namespace Exports'
4141
42- # Only run this job if the pull request was merged (or the job was triggered manually):
43- if : github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
42+ # Only run this job if the pull request was merged and did not have label `automated-pr` (or the job was triggered manually):
43+ if : github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'automated-pr') == false || github.event_name == 'workflow_dispatch'
4444
4545 # Define the type of virtual host machine:
4646 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments