This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 37ab8fc76b Fix handling of GitHub Event types for new selective checks 
(#24665)
37ab8fc76b is described below

commit 37ab8fc76b4d977914ed54fc392b14cdb478d9d1
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Jun 26 12:11:52 2022 +0200

    Fix handling of GitHub Event types for new selective checks (#24665)
    
    One more finding after merging the selective checks in Python
    - I missed a case of "pull_request_target".
    
    Fixed and added more tests.
---
 .../src/airflow_breeze/commands/ci_commands.py     |   2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   1 +
 dev/breeze/tests/test_selective_checks.py          |  90 +++++++++++++++++-
 images/breeze/output-commands-hash.txt             |   2 +-
 images/breeze/output-selective-check.svg           | 104 +++++++++++----------
 5 files changed, 143 insertions(+), 56 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/ci_commands.py 
b/dev/breeze/src/airflow_breeze/commands/ci_commands.py
index c8260698d7..c65753e1a6 100644
--- a/dev/breeze/src/airflow_breeze/commands/ci_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/ci_commands.py
@@ -205,7 +205,7 @@ def selective_check(
     from airflow_breeze.utils.selective_checks import SelectiveChecks
 
     github_event = GithubEvents(github_event_name)
-    if github_event == GithubEvents.PULL_REQUEST:
+    if commit_ref is not None:
         changed_files = get_changed_files(commit_ref=commit_ref, 
dry_run=dry_run, verbose=verbose)
     else:
         changed_files = ()
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index 4e07591d5a..5ba825e71f 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -304,6 +304,7 @@ class GithubEvents(Enum):
     PULL_REQUEST = "pull_request"
     PULL_REQUEST_REVIEW = "pull_request_review"
     PULL_REQUEST_TARGET = "pull_request_target"
+    PULL_REQUEST_WORKFLOW = "pull_request_workflow"
     PUSH = "push"
     SCHEDULE = "schedule"
     WORKFLOW_RUN = "workflow_run"
diff --git a/dev/breeze/tests/test_selective_checks.py 
b/dev/breeze/tests/test_selective_checks.py
index 492135ebd3..2d7e8fe83d 100644
--- a/dev/breeze/tests/test_selective_checks.py
+++ b/dev/breeze/tests/test_selective_checks.py
@@ -298,7 +298,7 @@ def test_expected_output_full_tests_needed(
                 "upgrade-to-newer-dependencies": "false",
                 "test-types": "",
             },
-            id="Everything should run when full tests are needed even if no 
files are changed",
+            id="Nothing should run if only non-important files changed",
         ),
         pytest.param(
             (
@@ -371,6 +371,76 @@ def test_expected_output_pull_request_v2_3(
     assert_outputs_are_printed(expected_outputs, str(sc))
 
 
[email protected](
+    "files, expected_outputs,",
+    [
+        pytest.param(
+            ("INTHEWILD.md",),
+            {
+                "all-python-versions": "['3.7']",
+                "all-python-versions-list-as-string": "3.7",
+                "image-build": "false",
+                "needs-helm-tests": "false",
+                "run-tests": "false",
+                "docs-build": "false",
+                "upgrade-to-newer-dependencies": "false",
+                "test-types": "",
+            },
+            id="Nothing should run if only non-important files changed",
+        ),
+        pytest.param(
+            (
+                "airflow/cli/test.py",
+                "chart/aaaa.txt",
+                "tests/providers/google/file.py",
+            ),
+            {
+                "all-python-versions": "['3.7']",
+                "all-python-versions-list-as-string": "3.7",
+                "image-build": "true",
+                "needs-helm-tests": "true",
+                "run-tests": "true",
+                "docs-build": "true",
+                "run-kubernetes-tests": "true",
+                "upgrade-to-newer-dependencies": "false",
+                "test-types": "Always CLI",
+            },
+            id="CLI tests and Kubernetes tests should run if cli/chart files 
changed",
+        ),
+        pytest.param(
+            (
+                "airflow/file.py",
+                "tests/providers/google/file.py",
+            ),
+            {
+                "all-python-versions": "['3.7']",
+                "all-python-versions-list-as-string": "3.7",
+                "image-build": "true",
+                "needs-helm-tests": "false",
+                "run-tests": "true",
+                "docs-build": "true",
+                "run-kubernetes-tests": "false",
+                "upgrade-to-newer-dependencies": "false",
+                "test-types": "API Always CLI Core Integration Other Providers 
WWW",
+            },
+            id="All tests except should run if core file changed",
+        ),
+    ],
+)
+def test_expected_output_pull_request_target(
+    files: Tuple[str, ...],
+    expected_outputs: Dict[str, str],
+):
+    sc = SelectiveChecks(
+        files=files,
+        commit_ref="HEAD",
+        github_event=GithubEvents.PULL_REQUEST_TARGET,
+        pr_labels=(),
+        default_branch="main",
+    )
+    assert_outputs_are_printed(expected_outputs, str(sc))
+
+
 @pytest.mark.parametrize(
     "files, pr_labels, default_branch, expected_outputs,",
     [
@@ -441,11 +511,21 @@ def test_expected_output_push(
     assert_outputs_are_printed(expected_outputs, str(sc))
 
 
-def test_no_commit_provided():
[email protected](
+    "github_event",
+    [
+        GithubEvents.PUSH,
+        GithubEvents.PULL_REQUEST,
+        GithubEvents.PULL_REQUEST_TARGET,
+        GithubEvents.PULL_REQUEST_WORKFLOW,
+        GithubEvents.SCHEDULE,
+    ],
+)
+def 
test_no_commit_provided_trigger_full_build_for_any_event_type(github_event):
     sc = SelectiveChecks(
         files=(),
         commit_ref="",
-        github_event=GithubEvents.PULL_REQUEST,
+        github_event=github_event,
         pr_labels=(),
         default_branch="main",
     )
@@ -457,7 +537,9 @@ def test_no_commit_provided():
             "needs-helm-tests": "true",
             "run-tests": "true",
             "docs-build": "true",
-            "upgrade-to-newer-dependencies": "false",
+            "upgrade-to-newer-dependencies": "true"
+            if github_event in [GithubEvents.PUSH, GithubEvents.SCHEDULE]
+            else "false",
             "test-types": "API Always CLI Core Integration Other Providers 
WWW",
         },
         str(sc),
diff --git a/images/breeze/output-commands-hash.txt 
b/images/breeze/output-commands-hash.txt
index d5515f5d13..5562ae41f2 100644
--- a/images/breeze/output-commands-hash.txt
+++ b/images/breeze/output-commands-hash.txt
@@ -2,4 +2,4 @@
 # This file is automatically generated by pre-commit. If you have a conflict 
with this file
 # Please do not solve it but run `breeze regenerate-command-images`.
 # This command should fix the conflict and regenerate help images that you 
have conflict with.
-b669c8a210166579c58f904d9984d739
+db93ba3ceb45327f208f9ebb6e5d3644
diff --git a/images/breeze/output-selective-check.svg 
b/images/breeze/output-selective-check.svg
index 67bc6c5253..45a7740819 100644
--- a/images/breeze/output-selective-check.svg
+++ b/images/breeze/output-selective-check.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 489.2" 
xmlns="http://www.w3.org/2000/svg";>
+<svg class="rich-terminal" viewBox="0 0 1482 513.5999999999999" 
xmlns="http://www.w3.org/2000/svg";>
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,113 +19,117 @@
         font-weight: 700;
     }
 
-    .terminal-417995322-matrix {
+    .terminal-2108240815-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-417995322-title {
+    .terminal-2108240815-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-417995322-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-417995322-r2 { fill: #c5c8c6 }
-.terminal-417995322-r3 { fill: #d0b344;font-weight: bold }
-.terminal-417995322-r4 { fill: #868887 }
-.terminal-417995322-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-417995322-r6 { fill: #8d7b39 }
-.terminal-417995322-r7 { fill: #98a84b;font-weight: bold }
+    .terminal-2108240815-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2108240815-r2 { fill: #c5c8c6 }
+.terminal-2108240815-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2108240815-r4 { fill: #868887 }
+.terminal-2108240815-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-2108240815-r6 { fill: #8d7b39 }
+.terminal-2108240815-r7 { fill: #98a84b;font-weight: bold }
     </style>
 
     <defs>
-    <clipPath id="terminal-417995322-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="438.2" />
+    <clipPath id="terminal-2108240815-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="462.59999999999997" />
     </clipPath>
-    <clipPath id="terminal-417995322-line-0">
+    <clipPath id="terminal-2108240815-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-1">
+<clipPath id="terminal-2108240815-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-2">
+<clipPath id="terminal-2108240815-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-3">
+<clipPath id="terminal-2108240815-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-4">
+<clipPath id="terminal-2108240815-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-5">
+<clipPath id="terminal-2108240815-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-6">
+<clipPath id="terminal-2108240815-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-7">
+<clipPath id="terminal-2108240815-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-8">
+<clipPath id="terminal-2108240815-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-9">
+<clipPath id="terminal-2108240815-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-10">
+<clipPath id="terminal-2108240815-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-11">
+<clipPath id="terminal-2108240815-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-12">
+<clipPath id="terminal-2108240815-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-13">
+<clipPath id="terminal-2108240815-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-14">
+<clipPath id="terminal-2108240815-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-15">
+<clipPath id="terminal-2108240815-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-417995322-line-16">
+<clipPath id="terminal-2108240815-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2108240815-line-17">
+    <rect x="0" y="416.3" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="487.2" rx="8"/><text 
class="terminal-417995322-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;selective-check</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="511.6" rx="8"/><text 
class="terminal-2108240815-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;selective-check</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" 
clip-path="url(#terminal-417995322-clip-terminal)">
+    <g transform="translate(9, 41)" 
clip-path="url(#terminal-2108240815-clip-terminal)">
     
-    <g class="terminal-417995322-matrix">
-    <text class="terminal-417995322-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-417995322-line-0)">
-</text><text class="terminal-417995322-r3" x="12.2" y="44.4" textLength="85.4" 
clip-path="url(#terminal-417995322-line-1)">Usage:&#160;</text><text 
class="terminal-417995322-r1" x="97.6" y="44.4" textLength="390.4" 
clip-path="url(#terminal-417995322-line-1)">breeze&#160;selective-check&#160;[OPTIONS]</text><text
 class="terminal-417995322-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-1)">
-</text><text class="terminal-417995322-r2" x="1464" y="68.8" textLength="12.2" 
clip-path="url(#terminal-417995322-line-2)">
-</text><text class="terminal-417995322-r2" x="12.2" y="93.2" 
textLength="768.6" 
clip-path="url(#terminal-417995322-line-3)">Checks&#160;what&#160;kind&#160;of&#160;tests&#160;should&#160;be&#160;run&#160;for&#160;an&#160;incoming&#160;commit.</text><text
 class="terminal-417995322-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-417995322-line-3)">
-</text><text class="terminal-417995322-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-417995322-line-4)">
-</text><text class="terminal-417995322-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-417995322-line-5)">╭─</text><text 
class="terminal-417995322-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-417995322-line-5)">&#160;Selective&#160;check&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-417995322-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-417995 [...]
-</text><text class="terminal-417995322-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-6)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-6)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-417995322-line-6)">-commit</text><text 
class="terminal-417995322-r5" x="122" y="166.4" textLength="48.8" 
clip-path="url(#terminal-417995322- [...]
-</text><text class="terminal-417995322-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-417995322-line-7)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="190.8" textLength="12.2" 
clip-path="url(#terminal-417995322-line-7)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="190.8" textLength="36.6" 
clip-path="url(#terminal-417995322-line-7)">-pr</text><text 
class="terminal-417995322-r5" x="73.2" y="190.8" textLength="85.4" 
clip-path="url(#terminal-417995322-lin [...]
-</text><text class="terminal-417995322-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-417995322-line-8)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="215.2" textLength="12.2" 
clip-path="url(#terminal-417995322-line-8)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="215.2" textLength="97.6" 
clip-path="url(#terminal-417995322-line-8)">-default</text><text 
class="terminal-417995322-r5" x="134.2" y="215.2" textLength="85.4" 
clip-path="url(#terminal-4179953 [...]
-</text><text class="terminal-417995322-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-417995322-line-9)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-417995322-line-9)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="239.6" textLength="85.4" 
clip-path="url(#terminal-417995322-line-9)">-github</text><text 
class="terminal-417995322-r5" x="122" y="239.6" textLength="134.2" 
clip-path="url(#terminal-417995322 [...]
-</text><text class="terminal-417995322-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-417995322-line-10)">│</text><text 
class="terminal-417995322-r6" x="305" y="264" textLength="1110.2" 
clip-path="url(#terminal-417995322-line-10)">(pull_request&#160;|&#160;pull_request_review&#160;|&#160;pull_request_target&#160;|&#160;push&#160;|&#160;schedule&#160;|&#160;workflow_run)</text><text
 class="terminal-417995322-r4" x="1451.8" y="264" textLength="12.2" 
clip-path="url(#terminal-4 [...]
-</text><text class="terminal-417995322-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-11)">│</text><text 
class="terminal-417995322-r4" x="305" y="288.4" textLength="1110.2" 
clip-path="url(#terminal-417995322-line-11)">[default:&#160;pull_request]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
-</text><text class="terminal-417995322-r4" x="0" y="312.8" textLength="1464" 
clip-path="url(#terminal-417995322-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-417995322-r2" x="1464" y="312.8" textLength="12.2" 
clip-path="url(#terminal-417995322-line-12)">
-</text><text class="terminal-417995322-r4" x="0" y="337.2" textLength="24.4" 
clip-path="url(#terminal-417995322-line-13)">╭─</text><text 
class="terminal-417995322-r4" x="24.4" y="337.2" textLength="1415.2" 
clip-path="url(#terminal-417995322-line-13)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-417995322-r4" x="1439.6" y="337.2" textLength="24.4" 
clip-path="url(#terminal-41799532 [...]
-</text><text class="terminal-417995322-r4" x="0" y="361.6" textLength="12.2" 
clip-path="url(#terminal-417995322-line-14)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="361.6" textLength="12.2" 
clip-path="url(#terminal-417995322-line-14)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="361.6" textLength="97.6" 
clip-path="url(#terminal-417995322-line-14)">-verbose</text><text 
class="terminal-417995322-r7" x="158.6" y="361.6" textLength="24.4" 
clip-path="url(#terminal-4179 [...]
-</text><text class="terminal-417995322-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-417995322-line-15)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-417995322-line-15)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="386" textLength="48.8" 
clip-path="url(#terminal-417995322-line-15)">-dry</text><text 
class="terminal-417995322-r5" x="85.4" y="386" textLength="48.8" 
clip-path="url(#terminal-417995322-line-15 [...]
-</text><text class="terminal-417995322-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-16)">│</text><text 
class="terminal-417995322-r5" x="24.4" y="410.4" textLength="12.2" 
clip-path="url(#terminal-417995322-line-16)">-</text><text 
class="terminal-417995322-r5" x="36.6" y="410.4" textLength="61" 
clip-path="url(#terminal-417995322-line-16)">-help</text><text 
class="terminal-417995322-r7" x="158.6" y="410.4" textLength="24.4" 
clip-path="url(#terminal-417995322 [...]
-</text><text class="terminal-417995322-r4" x="0" y="434.8" textLength="1464" 
clip-path="url(#terminal-417995322-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-417995322-r2" x="1464" y="434.8" textLength="12.2" 
clip-path="url(#terminal-417995322-line-17)">
+    <g class="terminal-2108240815-matrix">
+    <text class="terminal-2108240815-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-0)">
+</text><text class="terminal-2108240815-r3" x="12.2" y="44.4" 
textLength="85.4" 
clip-path="url(#terminal-2108240815-line-1)">Usage:&#160;</text><text 
class="terminal-2108240815-r1" x="97.6" y="44.4" textLength="390.4" 
clip-path="url(#terminal-2108240815-line-1)">breeze&#160;selective-check&#160;[OPTIONS]</text><text
 class="terminal-2108240815-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-1)">
+</text><text class="terminal-2108240815-r2" x="1464" y="68.8" 
textLength="12.2" clip-path="url(#terminal-2108240815-line-2)">
+</text><text class="terminal-2108240815-r2" x="12.2" y="93.2" 
textLength="768.6" 
clip-path="url(#terminal-2108240815-line-3)">Checks&#160;what&#160;kind&#160;of&#160;tests&#160;should&#160;be&#160;run&#160;for&#160;an&#160;incoming&#160;commit.</text><text
 class="terminal-2108240815-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-3)">
+</text><text class="terminal-2108240815-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-2108240815-line-4)">
+</text><text class="terminal-2108240815-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-2108240815-line-5)">╭─</text><text 
class="terminal-2108240815-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-2108240815-line-5)">&#160;Selective&#160;check&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2108240815-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-6)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-6)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-2108240815-line-6)">-commit</text><text 
class="terminal-2108240815-r5" x="122" y="166.4" textLength="48.8" 
clip-path="url(#terminal-210 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-7)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="190.8" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-7)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="190.8" textLength="36.6" 
clip-path="url(#terminal-2108240815-line-7)">-pr</text><text 
class="terminal-2108240815-r5" x="73.2" y="190.8" textLength="85.4" 
clip-path="url(#terminal-210824 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-8)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="215.2" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-8)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="215.2" textLength="97.6" 
clip-path="url(#terminal-2108240815-line-8)">-default</text><text 
class="terminal-2108240815-r5" x="134.2" y="215.2" textLength="85.4" 
clip-path="url(#terminal- [...]
+</text><text class="terminal-2108240815-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-9)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-9)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="239.6" textLength="85.4" 
clip-path="url(#terminal-2108240815-line-9)">-github</text><text 
class="terminal-2108240815-r5" x="122" y="239.6" textLength="134.2" 
clip-path="url(#terminal-21 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-10)">│</text><text 
class="terminal-2108240815-r6" x="305" y="264" textLength="1134.6" 
clip-path="url(#terminal-2108240815-line-10)">(pull_request&#160;|&#160;pull_request_review&#160;|&#160;pull_request_target&#160;|&#160;pull_request_workflow&#160;|&#160;push&#160;|&#160;&#160;&#160;</text><text
 class="terminal-2108240815-r4" x="1451.8" y="264" textLength="12.2" clip-path 
[...]
+</text><text class="terminal-2108240815-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-11)">│</text><text 
class="terminal-2108240815-r6" x="305" y="288.4" textLength="1134.6" 
clip-path="url(#terminal-2108240815-line-11)">schedule&#160;|&#160;workflow_run)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="312.8" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-12)">│</text><text 
class="terminal-2108240815-r4" x="305" y="312.8" textLength="1134.6" 
clip-path="url(#terminal-2108240815-line-12)">[default:&#160;pull_request]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="337.2" textLength="1464" 
clip-path="url(#terminal-2108240815-line-13)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2108240815-r2" x="1464" y="337.2" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-13)">
+</text><text class="terminal-2108240815-r4" x="0" y="361.6" textLength="24.4" 
clip-path="url(#terminal-2108240815-line-14)">╭─</text><text 
class="terminal-2108240815-r4" x="24.4" y="361.6" textLength="1415.2" 
clip-path="url(#terminal-2108240815-line-14)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2108240815-r4" x="1439.6" y="361.6" textLength="24.4" 
clip-path="url(#terminal-210 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-15)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-15)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="386" textLength="97.6" 
clip-path="url(#terminal-2108240815-line-15)">-verbose</text><text 
class="terminal-2108240815-r7" x="158.6" y="386" textLength="24.4" 
clip-path="url(#terminal-21082 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-16)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="410.4" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-16)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="410.4" textLength="48.8" 
clip-path="url(#terminal-2108240815-line-16)">-dry</text><text 
class="terminal-2108240815-r5" x="85.4" y="410.4" textLength="48.8" 
clip-path="url(#terminal-21 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="434.8" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-17)">│</text><text 
class="terminal-2108240815-r5" x="24.4" y="434.8" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-17)">-</text><text 
class="terminal-2108240815-r5" x="36.6" y="434.8" textLength="61" 
clip-path="url(#terminal-2108240815-line-17)">-help</text><text 
class="terminal-2108240815-r7" x="158.6" y="434.8" textLength="24.4" 
clip-path="url(#terminal-21 [...]
+</text><text class="terminal-2108240815-r4" x="0" y="459.2" textLength="1464" 
clip-path="url(#terminal-2108240815-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2108240815-r2" x="1464" y="459.2" textLength="12.2" 
clip-path="url(#terminal-2108240815-line-18)">
 </text>
     </g>
     </g>

Reply via email to