projen 0.93.1__py3-none-any.whl → 0.93.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of projen might be problematic. Click here for more details.
- projen/_jsii/__init__.py +1 -1
- projen/_jsii/projen@0.93.2.jsii.tgz +0 -0
- projen/github/__init__.py +92 -0
- projen/github/workflows/__init__.py +76 -0
- {projen-0.93.1.data → projen-0.93.2.data}/scripts/projen +1 -1
- {projen-0.93.1.dist-info → projen-0.93.2.dist-info}/METADATA +1 -1
- {projen-0.93.1.dist-info → projen-0.93.2.dist-info}/RECORD +10 -10
- projen/_jsii/projen@0.93.1.jsii.tgz +0 -0
- {projen-0.93.1.dist-info → projen-0.93.2.dist-info}/LICENSE +0 -0
- {projen-0.93.1.dist-info → projen-0.93.2.dist-info}/WHEEL +0 -0
- {projen-0.93.1.dist-info → projen-0.93.2.dist-info}/top_level.txt +0 -0
projen/_jsii/__init__.py
CHANGED
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import constructs._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"projen", "0.93.
|
|
34
|
+
"projen", "0.93.2", __name__[0:-6], "projen@0.93.2.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
projen/github/__init__.py
CHANGED
|
@@ -683,6 +683,7 @@ class AutoQueueOptions:
|
|
|
683
683
|
"id": "id",
|
|
684
684
|
"if_": "if",
|
|
685
685
|
"name": "name",
|
|
686
|
+
"shell": "shell",
|
|
686
687
|
"working_directory": "workingDirectory",
|
|
687
688
|
"continue_on_error": "continueOnError",
|
|
688
689
|
"timeout_minutes": "timeoutMinutes",
|
|
@@ -697,6 +698,7 @@ class CheckoutOptions(_JobStepConfiguration_9caff420):
|
|
|
697
698
|
id: typing.Optional[builtins.str] = None,
|
|
698
699
|
if_: typing.Optional[builtins.str] = None,
|
|
699
700
|
name: typing.Optional[builtins.str] = None,
|
|
701
|
+
shell: typing.Optional[builtins.str] = None,
|
|
700
702
|
working_directory: typing.Optional[builtins.str] = None,
|
|
701
703
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
702
704
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -707,6 +709,7 @@ class CheckoutOptions(_JobStepConfiguration_9caff420):
|
|
|
707
709
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
708
710
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
709
711
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
712
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
710
713
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
711
714
|
:param continue_on_error: (experimental) Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails.
|
|
712
715
|
:param timeout_minutes: (experimental) The maximum number of minutes to run the step before killing the process.
|
|
@@ -722,6 +725,7 @@ class CheckoutOptions(_JobStepConfiguration_9caff420):
|
|
|
722
725
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
723
726
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
724
727
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
728
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
725
729
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
726
730
|
check_type(argname="argument continue_on_error", value=continue_on_error, expected_type=type_hints["continue_on_error"])
|
|
727
731
|
check_type(argname="argument timeout_minutes", value=timeout_minutes, expected_type=type_hints["timeout_minutes"])
|
|
@@ -735,6 +739,8 @@ class CheckoutOptions(_JobStepConfiguration_9caff420):
|
|
|
735
739
|
self._values["if_"] = if_
|
|
736
740
|
if name is not None:
|
|
737
741
|
self._values["name"] = name
|
|
742
|
+
if shell is not None:
|
|
743
|
+
self._values["shell"] = shell
|
|
738
744
|
if working_directory is not None:
|
|
739
745
|
self._values["working_directory"] = working_directory
|
|
740
746
|
if continue_on_error is not None:
|
|
@@ -788,6 +794,18 @@ class CheckoutOptions(_JobStepConfiguration_9caff420):
|
|
|
788
794
|
result = self._values.get("name")
|
|
789
795
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
790
796
|
|
|
797
|
+
@builtins.property
|
|
798
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
799
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
800
|
+
|
|
801
|
+
Refer to GitHub documentation for allowed values.
|
|
802
|
+
|
|
803
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
804
|
+
:stability: experimental
|
|
805
|
+
'''
|
|
806
|
+
result = self._values.get("shell")
|
|
807
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
808
|
+
|
|
791
809
|
@builtins.property
|
|
792
810
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
793
811
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -2327,6 +2345,7 @@ class DependabotScheduleInterval(enum.Enum):
|
|
|
2327
2345
|
"id": "id",
|
|
2328
2346
|
"if_": "if",
|
|
2329
2347
|
"name": "name",
|
|
2348
|
+
"shell": "shell",
|
|
2330
2349
|
"working_directory": "workingDirectory",
|
|
2331
2350
|
"continue_on_error": "continueOnError",
|
|
2332
2351
|
"timeout_minutes": "timeoutMinutes",
|
|
@@ -2341,6 +2360,7 @@ class DownloadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
2341
2360
|
id: typing.Optional[builtins.str] = None,
|
|
2342
2361
|
if_: typing.Optional[builtins.str] = None,
|
|
2343
2362
|
name: typing.Optional[builtins.str] = None,
|
|
2363
|
+
shell: typing.Optional[builtins.str] = None,
|
|
2344
2364
|
working_directory: typing.Optional[builtins.str] = None,
|
|
2345
2365
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
2346
2366
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -2351,6 +2371,7 @@ class DownloadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
2351
2371
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
2352
2372
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
2353
2373
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
2374
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
2354
2375
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
2355
2376
|
:param continue_on_error: (experimental) Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails.
|
|
2356
2377
|
:param timeout_minutes: (experimental) The maximum number of minutes to run the step before killing the process.
|
|
@@ -2366,6 +2387,7 @@ class DownloadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
2366
2387
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2367
2388
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
2368
2389
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2390
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
2369
2391
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
2370
2392
|
check_type(argname="argument continue_on_error", value=continue_on_error, expected_type=type_hints["continue_on_error"])
|
|
2371
2393
|
check_type(argname="argument timeout_minutes", value=timeout_minutes, expected_type=type_hints["timeout_minutes"])
|
|
@@ -2381,6 +2403,8 @@ class DownloadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
2381
2403
|
self._values["if_"] = if_
|
|
2382
2404
|
if name is not None:
|
|
2383
2405
|
self._values["name"] = name
|
|
2406
|
+
if shell is not None:
|
|
2407
|
+
self._values["shell"] = shell
|
|
2384
2408
|
if working_directory is not None:
|
|
2385
2409
|
self._values["working_directory"] = working_directory
|
|
2386
2410
|
if continue_on_error is not None:
|
|
@@ -2432,6 +2456,18 @@ class DownloadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
2432
2456
|
result = self._values.get("name")
|
|
2433
2457
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2434
2458
|
|
|
2459
|
+
@builtins.property
|
|
2460
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
2461
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
2462
|
+
|
|
2463
|
+
Refer to GitHub documentation for allowed values.
|
|
2464
|
+
|
|
2465
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
2466
|
+
:stability: experimental
|
|
2467
|
+
'''
|
|
2468
|
+
result = self._values.get("shell")
|
|
2469
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2470
|
+
|
|
2435
2471
|
@builtins.property
|
|
2436
2472
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
2437
2473
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -6460,6 +6496,7 @@ class SemanticTitleOptions:
|
|
|
6460
6496
|
"id": "id",
|
|
6461
6497
|
"if_": "if",
|
|
6462
6498
|
"name": "name",
|
|
6499
|
+
"shell": "shell",
|
|
6463
6500
|
"working_directory": "workingDirectory",
|
|
6464
6501
|
"continue_on_error": "continueOnError",
|
|
6465
6502
|
"timeout_minutes": "timeoutMinutes",
|
|
@@ -6474,6 +6511,7 @@ class SetupGitIdentityOptions(_JobStepConfiguration_9caff420):
|
|
|
6474
6511
|
id: typing.Optional[builtins.str] = None,
|
|
6475
6512
|
if_: typing.Optional[builtins.str] = None,
|
|
6476
6513
|
name: typing.Optional[builtins.str] = None,
|
|
6514
|
+
shell: typing.Optional[builtins.str] = None,
|
|
6477
6515
|
working_directory: typing.Optional[builtins.str] = None,
|
|
6478
6516
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
6479
6517
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -6484,6 +6522,7 @@ class SetupGitIdentityOptions(_JobStepConfiguration_9caff420):
|
|
|
6484
6522
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
6485
6523
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
6486
6524
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
6525
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
6487
6526
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
6488
6527
|
:param continue_on_error: (experimental) Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails.
|
|
6489
6528
|
:param timeout_minutes: (experimental) The maximum number of minutes to run the step before killing the process.
|
|
@@ -6499,6 +6538,7 @@ class SetupGitIdentityOptions(_JobStepConfiguration_9caff420):
|
|
|
6499
6538
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
6500
6539
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
6501
6540
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
6541
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
6502
6542
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
6503
6543
|
check_type(argname="argument continue_on_error", value=continue_on_error, expected_type=type_hints["continue_on_error"])
|
|
6504
6544
|
check_type(argname="argument timeout_minutes", value=timeout_minutes, expected_type=type_hints["timeout_minutes"])
|
|
@@ -6514,6 +6554,8 @@ class SetupGitIdentityOptions(_JobStepConfiguration_9caff420):
|
|
|
6514
6554
|
self._values["if_"] = if_
|
|
6515
6555
|
if name is not None:
|
|
6516
6556
|
self._values["name"] = name
|
|
6557
|
+
if shell is not None:
|
|
6558
|
+
self._values["shell"] = shell
|
|
6517
6559
|
if working_directory is not None:
|
|
6518
6560
|
self._values["working_directory"] = working_directory
|
|
6519
6561
|
if continue_on_error is not None:
|
|
@@ -6565,6 +6607,18 @@ class SetupGitIdentityOptions(_JobStepConfiguration_9caff420):
|
|
|
6565
6607
|
result = self._values.get("name")
|
|
6566
6608
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
6567
6609
|
|
|
6610
|
+
@builtins.property
|
|
6611
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
6612
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
6613
|
+
|
|
6614
|
+
Refer to GitHub documentation for allowed values.
|
|
6615
|
+
|
|
6616
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
6617
|
+
:stability: experimental
|
|
6618
|
+
'''
|
|
6619
|
+
result = self._values.get("shell")
|
|
6620
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6621
|
+
|
|
6568
6622
|
@builtins.property
|
|
6569
6623
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
6570
6624
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -7933,6 +7987,7 @@ class TaskWorkflowOptions(TaskWorkflowJobOptions):
|
|
|
7933
7987
|
"id": "id",
|
|
7934
7988
|
"if_": "if",
|
|
7935
7989
|
"name": "name",
|
|
7990
|
+
"shell": "shell",
|
|
7936
7991
|
"working_directory": "workingDirectory",
|
|
7937
7992
|
"continue_on_error": "continueOnError",
|
|
7938
7993
|
"timeout_minutes": "timeoutMinutes",
|
|
@@ -7947,6 +8002,7 @@ class UploadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
7947
8002
|
id: typing.Optional[builtins.str] = None,
|
|
7948
8003
|
if_: typing.Optional[builtins.str] = None,
|
|
7949
8004
|
name: typing.Optional[builtins.str] = None,
|
|
8005
|
+
shell: typing.Optional[builtins.str] = None,
|
|
7950
8006
|
working_directory: typing.Optional[builtins.str] = None,
|
|
7951
8007
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
7952
8008
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -7957,6 +8013,7 @@ class UploadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
7957
8013
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
7958
8014
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
7959
8015
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8016
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
7960
8017
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
7961
8018
|
:param continue_on_error: (experimental) Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails.
|
|
7962
8019
|
:param timeout_minutes: (experimental) The maximum number of minutes to run the step before killing the process.
|
|
@@ -7972,6 +8029,7 @@ class UploadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
7972
8029
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7973
8030
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
7974
8031
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
8032
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
7975
8033
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
7976
8034
|
check_type(argname="argument continue_on_error", value=continue_on_error, expected_type=type_hints["continue_on_error"])
|
|
7977
8035
|
check_type(argname="argument timeout_minutes", value=timeout_minutes, expected_type=type_hints["timeout_minutes"])
|
|
@@ -7987,6 +8045,8 @@ class UploadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
7987
8045
|
self._values["if_"] = if_
|
|
7988
8046
|
if name is not None:
|
|
7989
8047
|
self._values["name"] = name
|
|
8048
|
+
if shell is not None:
|
|
8049
|
+
self._values["shell"] = shell
|
|
7990
8050
|
if working_directory is not None:
|
|
7991
8051
|
self._values["working_directory"] = working_directory
|
|
7992
8052
|
if continue_on_error is not None:
|
|
@@ -8038,6 +8098,18 @@ class UploadArtifactOptions(_JobStepConfiguration_9caff420):
|
|
|
8038
8098
|
result = self._values.get("name")
|
|
8039
8099
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
8040
8100
|
|
|
8101
|
+
@builtins.property
|
|
8102
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
8103
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
8104
|
+
|
|
8105
|
+
Refer to GitHub documentation for allowed values.
|
|
8106
|
+
|
|
8107
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
8108
|
+
:stability: experimental
|
|
8109
|
+
'''
|
|
8110
|
+
result = self._values.get("shell")
|
|
8111
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8112
|
+
|
|
8041
8113
|
@builtins.property
|
|
8042
8114
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
8043
8115
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -8682,6 +8754,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8682
8754
|
id: typing.Optional[builtins.str] = None,
|
|
8683
8755
|
if_: typing.Optional[builtins.str] = None,
|
|
8684
8756
|
name: typing.Optional[builtins.str] = None,
|
|
8757
|
+
shell: typing.Optional[builtins.str] = None,
|
|
8685
8758
|
working_directory: typing.Optional[builtins.str] = None,
|
|
8686
8759
|
) -> _JobStep_c3287c05:
|
|
8687
8760
|
'''(experimental) Checks out a repository.
|
|
@@ -8693,6 +8766,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8693
8766
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
8694
8767
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
8695
8768
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8769
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
8696
8770
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
8697
8771
|
|
|
8698
8772
|
:return: A JobStep that checks out a repository
|
|
@@ -8707,6 +8781,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8707
8781
|
id=id,
|
|
8708
8782
|
if_=if_,
|
|
8709
8783
|
name=name,
|
|
8784
|
+
shell=shell,
|
|
8710
8785
|
working_directory=working_directory,
|
|
8711
8786
|
)
|
|
8712
8787
|
|
|
@@ -8724,6 +8799,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8724
8799
|
id: typing.Optional[builtins.str] = None,
|
|
8725
8800
|
if_: typing.Optional[builtins.str] = None,
|
|
8726
8801
|
name: typing.Optional[builtins.str] = None,
|
|
8802
|
+
shell: typing.Optional[builtins.str] = None,
|
|
8727
8803
|
working_directory: typing.Optional[builtins.str] = None,
|
|
8728
8804
|
) -> _JobStep_c3287c05:
|
|
8729
8805
|
'''(experimental) Downloads an artifact.
|
|
@@ -8735,6 +8811,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8735
8811
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
8736
8812
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
8737
8813
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8814
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
8738
8815
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
8739
8816
|
|
|
8740
8817
|
:return: A JobStep that downloads an artifact
|
|
@@ -8749,6 +8826,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8749
8826
|
id=id,
|
|
8750
8827
|
if_=if_,
|
|
8751
8828
|
name=name,
|
|
8829
|
+
shell=shell,
|
|
8752
8830
|
working_directory=working_directory,
|
|
8753
8831
|
)
|
|
8754
8832
|
|
|
@@ -8766,6 +8844,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8766
8844
|
id: typing.Optional[builtins.str] = None,
|
|
8767
8845
|
if_: typing.Optional[builtins.str] = None,
|
|
8768
8846
|
name: typing.Optional[builtins.str] = None,
|
|
8847
|
+
shell: typing.Optional[builtins.str] = None,
|
|
8769
8848
|
working_directory: typing.Optional[builtins.str] = None,
|
|
8770
8849
|
) -> _JobStep_c3287c05:
|
|
8771
8850
|
'''(experimental) Configures the git identity (user name and email).
|
|
@@ -8777,6 +8856,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8777
8856
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
8778
8857
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
8779
8858
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8859
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
8780
8860
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
8781
8861
|
|
|
8782
8862
|
:return: Job step that configures the provided git identity
|
|
@@ -8791,6 +8871,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8791
8871
|
id=id,
|
|
8792
8872
|
if_=if_,
|
|
8793
8873
|
name=name,
|
|
8874
|
+
shell=shell,
|
|
8794
8875
|
working_directory=working_directory,
|
|
8795
8876
|
)
|
|
8796
8877
|
|
|
@@ -8808,6 +8889,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8808
8889
|
id: typing.Optional[builtins.str] = None,
|
|
8809
8890
|
if_: typing.Optional[builtins.str] = None,
|
|
8810
8891
|
name: typing.Optional[builtins.str] = None,
|
|
8892
|
+
shell: typing.Optional[builtins.str] = None,
|
|
8811
8893
|
working_directory: typing.Optional[builtins.str] = None,
|
|
8812
8894
|
) -> _JobStep_c3287c05:
|
|
8813
8895
|
'''(experimental) Checks if a tag exists.
|
|
@@ -8825,6 +8907,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8825
8907
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
8826
8908
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
8827
8909
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8910
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
8828
8911
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
8829
8912
|
|
|
8830
8913
|
:return: Job step that checks if the provided tag exists
|
|
@@ -8841,6 +8924,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8841
8924
|
id=id,
|
|
8842
8925
|
if_=if_,
|
|
8843
8926
|
name=name,
|
|
8927
|
+
shell=shell,
|
|
8844
8928
|
working_directory=working_directory,
|
|
8845
8929
|
)
|
|
8846
8930
|
|
|
@@ -8858,6 +8942,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8858
8942
|
id: typing.Optional[builtins.str] = None,
|
|
8859
8943
|
if_: typing.Optional[builtins.str] = None,
|
|
8860
8944
|
name: typing.Optional[builtins.str] = None,
|
|
8945
|
+
shell: typing.Optional[builtins.str] = None,
|
|
8861
8946
|
working_directory: typing.Optional[builtins.str] = None,
|
|
8862
8947
|
) -> _JobStep_c3287c05:
|
|
8863
8948
|
'''(experimental) Uploads an artifact.
|
|
@@ -8869,6 +8954,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8869
8954
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
8870
8955
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
8871
8956
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
8957
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
8872
8958
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
8873
8959
|
|
|
8874
8960
|
:return: A JobStep that uploads an artifact
|
|
@@ -8883,6 +8969,7 @@ class WorkflowSteps(metaclass=jsii.JSIIMeta, jsii_type="projen.github.WorkflowSt
|
|
|
8883
8969
|
id=id,
|
|
8884
8970
|
if_=if_,
|
|
8885
8971
|
name=name,
|
|
8972
|
+
shell=shell,
|
|
8886
8973
|
working_directory=working_directory,
|
|
8887
8974
|
)
|
|
8888
8975
|
|
|
@@ -9051,6 +9138,7 @@ def _typecheckingstub__a17b4445d77135e079ad1d957d41f1a5ade398e6b6ba84b471b26b6ad
|
|
|
9051
9138
|
id: typing.Optional[builtins.str] = None,
|
|
9052
9139
|
if_: typing.Optional[builtins.str] = None,
|
|
9053
9140
|
name: typing.Optional[builtins.str] = None,
|
|
9141
|
+
shell: typing.Optional[builtins.str] = None,
|
|
9054
9142
|
working_directory: typing.Optional[builtins.str] = None,
|
|
9055
9143
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
9056
9144
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -9211,6 +9299,7 @@ def _typecheckingstub__c7f153d5c1001fcb119385a05448ea85e212f46cc420d578734261b83
|
|
|
9211
9299
|
id: typing.Optional[builtins.str] = None,
|
|
9212
9300
|
if_: typing.Optional[builtins.str] = None,
|
|
9213
9301
|
name: typing.Optional[builtins.str] = None,
|
|
9302
|
+
shell: typing.Optional[builtins.str] = None,
|
|
9214
9303
|
working_directory: typing.Optional[builtins.str] = None,
|
|
9215
9304
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
9216
9305
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -9630,6 +9719,7 @@ def _typecheckingstub__b9e40915fe7c519c231c73e9a63dfa1b1dee67586ebf4629165f8556f
|
|
|
9630
9719
|
id: typing.Optional[builtins.str] = None,
|
|
9631
9720
|
if_: typing.Optional[builtins.str] = None,
|
|
9632
9721
|
name: typing.Optional[builtins.str] = None,
|
|
9722
|
+
shell: typing.Optional[builtins.str] = None,
|
|
9633
9723
|
working_directory: typing.Optional[builtins.str] = None,
|
|
9634
9724
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
9635
9725
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -9773,6 +9863,7 @@ def _typecheckingstub__76a6b70b748b84dc156557f2c93bcd7ad0f6ba6fe077270e3f296f69c
|
|
|
9773
9863
|
id: typing.Optional[builtins.str] = None,
|
|
9774
9864
|
if_: typing.Optional[builtins.str] = None,
|
|
9775
9865
|
name: typing.Optional[builtins.str] = None,
|
|
9866
|
+
shell: typing.Optional[builtins.str] = None,
|
|
9776
9867
|
working_directory: typing.Optional[builtins.str] = None,
|
|
9777
9868
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
9778
9869
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -9814,6 +9905,7 @@ def _typecheckingstub__696566a4c593a7173649d5eeaadb52edb8460487e95d469374dc3c01f
|
|
|
9814
9905
|
id: typing.Optional[builtins.str] = None,
|
|
9815
9906
|
if_: typing.Optional[builtins.str] = None,
|
|
9816
9907
|
name: typing.Optional[builtins.str] = None,
|
|
9908
|
+
shell: typing.Optional[builtins.str] = None,
|
|
9817
9909
|
working_directory: typing.Optional[builtins.str] = None,
|
|
9818
9910
|
) -> None:
|
|
9819
9911
|
"""Type checking stubs"""
|
|
@@ -3553,6 +3553,7 @@ class StatusOptions:
|
|
|
3553
3553
|
"id": "id",
|
|
3554
3554
|
"if_": "if",
|
|
3555
3555
|
"name": "name",
|
|
3556
|
+
"shell": "shell",
|
|
3556
3557
|
"working_directory": "workingDirectory",
|
|
3557
3558
|
},
|
|
3558
3559
|
)
|
|
@@ -3564,6 +3565,7 @@ class StepConfiguration:
|
|
|
3564
3565
|
id: typing.Optional[builtins.str] = None,
|
|
3565
3566
|
if_: typing.Optional[builtins.str] = None,
|
|
3566
3567
|
name: typing.Optional[builtins.str] = None,
|
|
3568
|
+
shell: typing.Optional[builtins.str] = None,
|
|
3567
3569
|
working_directory: typing.Optional[builtins.str] = None,
|
|
3568
3570
|
) -> None:
|
|
3569
3571
|
'''(experimental) Fields that describe the How, Why, When, and Who of a Step.
|
|
@@ -3576,6 +3578,7 @@ class StepConfiguration:
|
|
|
3576
3578
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
3577
3579
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
3578
3580
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
3581
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
3579
3582
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
3580
3583
|
|
|
3581
3584
|
:stability: experimental
|
|
@@ -3586,6 +3589,7 @@ class StepConfiguration:
|
|
|
3586
3589
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3587
3590
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
3588
3591
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3592
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
3589
3593
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
3590
3594
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3591
3595
|
if env is not None:
|
|
@@ -3596,6 +3600,8 @@ class StepConfiguration:
|
|
|
3596
3600
|
self._values["if_"] = if_
|
|
3597
3601
|
if name is not None:
|
|
3598
3602
|
self._values["name"] = name
|
|
3603
|
+
if shell is not None:
|
|
3604
|
+
self._values["shell"] = shell
|
|
3599
3605
|
if working_directory is not None:
|
|
3600
3606
|
self._values["working_directory"] = working_directory
|
|
3601
3607
|
|
|
@@ -3643,6 +3649,18 @@ class StepConfiguration:
|
|
|
3643
3649
|
result = self._values.get("name")
|
|
3644
3650
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3645
3651
|
|
|
3652
|
+
@builtins.property
|
|
3653
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
3654
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
3655
|
+
|
|
3656
|
+
Refer to GitHub documentation for allowed values.
|
|
3657
|
+
|
|
3658
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
3659
|
+
:stability: experimental
|
|
3660
|
+
'''
|
|
3661
|
+
result = self._values.get("shell")
|
|
3662
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3663
|
+
|
|
3646
3664
|
@builtins.property
|
|
3647
3665
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
3648
3666
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -4683,6 +4701,7 @@ class WorkflowRunOptions:
|
|
|
4683
4701
|
"id": "id",
|
|
4684
4702
|
"if_": "if",
|
|
4685
4703
|
"name": "name",
|
|
4704
|
+
"shell": "shell",
|
|
4686
4705
|
"working_directory": "workingDirectory",
|
|
4687
4706
|
"continue_on_error": "continueOnError",
|
|
4688
4707
|
"timeout_minutes": "timeoutMinutes",
|
|
@@ -4696,6 +4715,7 @@ class JobStepConfiguration(StepConfiguration):
|
|
|
4696
4715
|
id: typing.Optional[builtins.str] = None,
|
|
4697
4716
|
if_: typing.Optional[builtins.str] = None,
|
|
4698
4717
|
name: typing.Optional[builtins.str] = None,
|
|
4718
|
+
shell: typing.Optional[builtins.str] = None,
|
|
4699
4719
|
working_directory: typing.Optional[builtins.str] = None,
|
|
4700
4720
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
4701
4721
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -4706,6 +4726,7 @@ class JobStepConfiguration(StepConfiguration):
|
|
|
4706
4726
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
4707
4727
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
4708
4728
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
4729
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
4709
4730
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
4710
4731
|
:param continue_on_error: (experimental) Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails.
|
|
4711
4732
|
:param timeout_minutes: (experimental) The maximum number of minutes to run the step before killing the process.
|
|
@@ -4718,6 +4739,7 @@ class JobStepConfiguration(StepConfiguration):
|
|
|
4718
4739
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4719
4740
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
4720
4741
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4742
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
4721
4743
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
4722
4744
|
check_type(argname="argument continue_on_error", value=continue_on_error, expected_type=type_hints["continue_on_error"])
|
|
4723
4745
|
check_type(argname="argument timeout_minutes", value=timeout_minutes, expected_type=type_hints["timeout_minutes"])
|
|
@@ -4730,6 +4752,8 @@ class JobStepConfiguration(StepConfiguration):
|
|
|
4730
4752
|
self._values["if_"] = if_
|
|
4731
4753
|
if name is not None:
|
|
4732
4754
|
self._values["name"] = name
|
|
4755
|
+
if shell is not None:
|
|
4756
|
+
self._values["shell"] = shell
|
|
4733
4757
|
if working_directory is not None:
|
|
4734
4758
|
self._values["working_directory"] = working_directory
|
|
4735
4759
|
if continue_on_error is not None:
|
|
@@ -4781,6 +4805,18 @@ class JobStepConfiguration(StepConfiguration):
|
|
|
4781
4805
|
result = self._values.get("name")
|
|
4782
4806
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4783
4807
|
|
|
4808
|
+
@builtins.property
|
|
4809
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
4810
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
4811
|
+
|
|
4812
|
+
Refer to GitHub documentation for allowed values.
|
|
4813
|
+
|
|
4814
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
4815
|
+
:stability: experimental
|
|
4816
|
+
'''
|
|
4817
|
+
result = self._values.get("shell")
|
|
4818
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4819
|
+
|
|
4784
4820
|
@builtins.property
|
|
4785
4821
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
4786
4822
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -5051,6 +5087,7 @@ class PullRequestTargetOptions(PushOptions):
|
|
|
5051
5087
|
"id": "id",
|
|
5052
5088
|
"if_": "if",
|
|
5053
5089
|
"name": "name",
|
|
5090
|
+
"shell": "shell",
|
|
5054
5091
|
"working_directory": "workingDirectory",
|
|
5055
5092
|
"run": "run",
|
|
5056
5093
|
"uses": "uses",
|
|
@@ -5065,6 +5102,7 @@ class Step(StepConfiguration):
|
|
|
5065
5102
|
id: typing.Optional[builtins.str] = None,
|
|
5066
5103
|
if_: typing.Optional[builtins.str] = None,
|
|
5067
5104
|
name: typing.Optional[builtins.str] = None,
|
|
5105
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5068
5106
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5069
5107
|
run: typing.Optional[builtins.str] = None,
|
|
5070
5108
|
uses: typing.Optional[builtins.str] = None,
|
|
@@ -5081,6 +5119,7 @@ class Step(StepConfiguration):
|
|
|
5081
5119
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
5082
5120
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
5083
5121
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
5122
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
5084
5123
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
5085
5124
|
:param run: (experimental) Runs command-line programs using the operating system's shell. If you do not provide a name, the step name will default to the text specified in the run command.
|
|
5086
5125
|
:param uses: (experimental) Selects an action to run as part of a step in your job. An action is a reusable unit of code. You can use an action defined in the same repository as the workflow, a public repository, or in a published Docker container image.
|
|
@@ -5095,6 +5134,7 @@ class Step(StepConfiguration):
|
|
|
5095
5134
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
5096
5135
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
5097
5136
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
5137
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
5098
5138
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
5099
5139
|
check_type(argname="argument run", value=run, expected_type=type_hints["run"])
|
|
5100
5140
|
check_type(argname="argument uses", value=uses, expected_type=type_hints["uses"])
|
|
@@ -5108,6 +5148,8 @@ class Step(StepConfiguration):
|
|
|
5108
5148
|
self._values["if_"] = if_
|
|
5109
5149
|
if name is not None:
|
|
5110
5150
|
self._values["name"] = name
|
|
5151
|
+
if shell is not None:
|
|
5152
|
+
self._values["shell"] = shell
|
|
5111
5153
|
if working_directory is not None:
|
|
5112
5154
|
self._values["working_directory"] = working_directory
|
|
5113
5155
|
if run is not None:
|
|
@@ -5161,6 +5203,18 @@ class Step(StepConfiguration):
|
|
|
5161
5203
|
result = self._values.get("name")
|
|
5162
5204
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
5163
5205
|
|
|
5206
|
+
@builtins.property
|
|
5207
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
5208
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
5209
|
+
|
|
5210
|
+
Refer to GitHub documentation for allowed values.
|
|
5211
|
+
|
|
5212
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
5213
|
+
:stability: experimental
|
|
5214
|
+
'''
|
|
5215
|
+
result = self._values.get("shell")
|
|
5216
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5217
|
+
|
|
5164
5218
|
@builtins.property
|
|
5165
5219
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
5166
5220
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -5232,6 +5286,7 @@ class Step(StepConfiguration):
|
|
|
5232
5286
|
"id": "id",
|
|
5233
5287
|
"if_": "if",
|
|
5234
5288
|
"name": "name",
|
|
5289
|
+
"shell": "shell",
|
|
5235
5290
|
"working_directory": "workingDirectory",
|
|
5236
5291
|
"run": "run",
|
|
5237
5292
|
"uses": "uses",
|
|
@@ -5248,6 +5303,7 @@ class JobStep(Step, JobStepConfiguration):
|
|
|
5248
5303
|
id: typing.Optional[builtins.str] = None,
|
|
5249
5304
|
if_: typing.Optional[builtins.str] = None,
|
|
5250
5305
|
name: typing.Optional[builtins.str] = None,
|
|
5306
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5251
5307
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5252
5308
|
run: typing.Optional[builtins.str] = None,
|
|
5253
5309
|
uses: typing.Optional[builtins.str] = None,
|
|
@@ -5261,6 +5317,7 @@ class JobStep(Step, JobStepConfiguration):
|
|
|
5261
5317
|
:param id: (experimental) A unique identifier for the step. You can use the id to reference the step in contexts.
|
|
5262
5318
|
:param if_: (experimental) You can use the if conditional to prevent a job from running unless a condition is met. You can use any supported context and expression to create a conditional.
|
|
5263
5319
|
:param name: (experimental) A name for your step to display on GitHub.
|
|
5320
|
+
:param shell: (experimental) Overrides the default shell settings in the runner's operating system and the job's default. Refer to GitHub documentation for allowed values.
|
|
5264
5321
|
:param working_directory: (experimental) Specifies a working directory for a step. Overrides a job's working directory.
|
|
5265
5322
|
:param run: (experimental) Runs command-line programs using the operating system's shell. If you do not provide a name, the step name will default to the text specified in the run command.
|
|
5266
5323
|
:param uses: (experimental) Selects an action to run as part of a step in your job. An action is a reusable unit of code. You can use an action defined in the same repository as the workflow, a public repository, or in a published Docker container image.
|
|
@@ -5277,6 +5334,7 @@ class JobStep(Step, JobStepConfiguration):
|
|
|
5277
5334
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
5278
5335
|
check_type(argname="argument if_", value=if_, expected_type=type_hints["if_"])
|
|
5279
5336
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
5337
|
+
check_type(argname="argument shell", value=shell, expected_type=type_hints["shell"])
|
|
5280
5338
|
check_type(argname="argument working_directory", value=working_directory, expected_type=type_hints["working_directory"])
|
|
5281
5339
|
check_type(argname="argument run", value=run, expected_type=type_hints["run"])
|
|
5282
5340
|
check_type(argname="argument uses", value=uses, expected_type=type_hints["uses"])
|
|
@@ -5292,6 +5350,8 @@ class JobStep(Step, JobStepConfiguration):
|
|
|
5292
5350
|
self._values["if_"] = if_
|
|
5293
5351
|
if name is not None:
|
|
5294
5352
|
self._values["name"] = name
|
|
5353
|
+
if shell is not None:
|
|
5354
|
+
self._values["shell"] = shell
|
|
5295
5355
|
if working_directory is not None:
|
|
5296
5356
|
self._values["working_directory"] = working_directory
|
|
5297
5357
|
if run is not None:
|
|
@@ -5349,6 +5409,18 @@ class JobStep(Step, JobStepConfiguration):
|
|
|
5349
5409
|
result = self._values.get("name")
|
|
5350
5410
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
5351
5411
|
|
|
5412
|
+
@builtins.property
|
|
5413
|
+
def shell(self) -> typing.Optional[builtins.str]:
|
|
5414
|
+
'''(experimental) Overrides the default shell settings in the runner's operating system and the job's default.
|
|
5415
|
+
|
|
5416
|
+
Refer to GitHub documentation for allowed values.
|
|
5417
|
+
|
|
5418
|
+
:see: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
|
5419
|
+
:stability: experimental
|
|
5420
|
+
'''
|
|
5421
|
+
result = self._values.get("shell")
|
|
5422
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5423
|
+
|
|
5352
5424
|
@builtins.property
|
|
5353
5425
|
def working_directory(self) -> typing.Optional[builtins.str]:
|
|
5354
5426
|
'''(experimental) Specifies a working directory for a step.
|
|
@@ -5831,6 +5903,7 @@ def _typecheckingstub__044349b8d18055b991a5680dc1d218dc2901bc2369d30fa23e79229d8
|
|
|
5831
5903
|
id: typing.Optional[builtins.str] = None,
|
|
5832
5904
|
if_: typing.Optional[builtins.str] = None,
|
|
5833
5905
|
name: typing.Optional[builtins.str] = None,
|
|
5906
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5834
5907
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5835
5908
|
) -> None:
|
|
5836
5909
|
"""Type checking stubs"""
|
|
@@ -5917,6 +5990,7 @@ def _typecheckingstub__015947eea91a5bd0b89e515aeca63fc47bd80c9c63472b7c37f32a247
|
|
|
5917
5990
|
id: typing.Optional[builtins.str] = None,
|
|
5918
5991
|
if_: typing.Optional[builtins.str] = None,
|
|
5919
5992
|
name: typing.Optional[builtins.str] = None,
|
|
5993
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5920
5994
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5921
5995
|
continue_on_error: typing.Optional[builtins.bool] = None,
|
|
5922
5996
|
timeout_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -5950,6 +6024,7 @@ def _typecheckingstub__91711bdec7a542de93f053fdd93de2213c56069702113a10e2c71564c
|
|
|
5950
6024
|
id: typing.Optional[builtins.str] = None,
|
|
5951
6025
|
if_: typing.Optional[builtins.str] = None,
|
|
5952
6026
|
name: typing.Optional[builtins.str] = None,
|
|
6027
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5953
6028
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5954
6029
|
run: typing.Optional[builtins.str] = None,
|
|
5955
6030
|
uses: typing.Optional[builtins.str] = None,
|
|
@@ -5964,6 +6039,7 @@ def _typecheckingstub__0df3f4a2690eb7ddc82908948a9807cfdc9923a4466ac38225eda950e
|
|
|
5964
6039
|
id: typing.Optional[builtins.str] = None,
|
|
5965
6040
|
if_: typing.Optional[builtins.str] = None,
|
|
5966
6041
|
name: typing.Optional[builtins.str] = None,
|
|
6042
|
+
shell: typing.Optional[builtins.str] = None,
|
|
5967
6043
|
working_directory: typing.Optional[builtins.str] = None,
|
|
5968
6044
|
run: typing.Optional[builtins.str] = None,
|
|
5969
6045
|
uses: typing.Optional[builtins.str] = None,
|
|
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
|
|
|
8
8
|
os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
|
|
9
9
|
|
|
10
10
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
11
|
-
"projen", "0.93.
|
|
11
|
+
"projen", "0.93.2", "projen", "projen@0.93.2.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
2
|
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
projen/_jsii/__init__.py,sha256=
|
|
4
|
-
projen/_jsii/projen@0.93.
|
|
3
|
+
projen/_jsii/__init__.py,sha256=WmY9TSSQJZK40qIbGtAogUW1PjIsJyFF8CtgY0DMo-Y,1404
|
|
4
|
+
projen/_jsii/projen@0.93.2.jsii.tgz,sha256=4qVQjwGSHOVAiKCsn6pSSyjVmdg3bNJpzhvQ7TYJL2I,2943166
|
|
5
5
|
projen/awscdk/__init__.py,sha256=UYKtmojaM74EcUGzI9Z7bhYU2x8X5Jzg7PcEMz_CMVE,1133986
|
|
6
6
|
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
7
|
projen/cdk/__init__.py,sha256=qCYr2RD-Y7g6n5fx9usQsbcIySNuCPqXAt_aT2m58Q0,538171
|
|
8
8
|
projen/cdk8s/__init__.py,sha256=WmxD0bz3xcdgdKKg_iuWJ4NWow_GHIdg2ZY4FncAfOk,624651
|
|
9
9
|
projen/cdktf/__init__.py,sha256=-DV__m-1Um_Du008d8FWKxcF0nu_0lHIwImOZM-sQ1o,238007
|
|
10
10
|
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
-
projen/github/__init__.py,sha256=
|
|
12
|
-
projen/github/workflows/__init__.py,sha256=
|
|
11
|
+
projen/github/__init__.py,sha256=3QsckjxLjN3dXgMtcZIstIxBX8YlKDV75rZkydTVUr4,475267
|
|
12
|
+
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
13
|
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
14
|
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
15
|
projen/javascript/__init__.py,sha256=Tf45YS4Fe_lP6U88IA7y0UlugP9IfV2zcYiav0IZ_U0,893229
|
|
@@ -19,9 +19,9 @@ projen/release/__init__.py,sha256=r7qrI9gWkD8MQkBmRIwEiMBqoCQrP8d4v_NPDz15go0,29
|
|
|
19
19
|
projen/typescript/__init__.py,sha256=1CiWMyFGWfs_Uv_s-wMzMj6iuwWKB8UOrbkifECacjo,504340
|
|
20
20
|
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
21
|
projen/web/__init__.py,sha256=HaU07EvLbpP3u_Sxjpb5_wDZTIl78nDCKSwvdYj4Sv4,848536
|
|
22
|
-
projen-0.93.
|
|
23
|
-
projen-0.93.
|
|
24
|
-
projen-0.93.
|
|
25
|
-
projen-0.93.
|
|
26
|
-
projen-0.93.
|
|
27
|
-
projen-0.93.
|
|
22
|
+
projen-0.93.2.data/scripts/projen,sha256=ywT9jx8ex_Am6cADf95Tjuek7fuzBeUBorlAEawVRr0,356
|
|
23
|
+
projen-0.93.2.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
+
projen-0.93.2.dist-info/METADATA,sha256=4_xEe_8jEAOOK7EA4i1Wgeufa92mS6AbYJlasoSJswc,79605
|
|
25
|
+
projen-0.93.2.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
+
projen-0.93.2.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
+
projen-0.93.2.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|