diff --git a/src/jobs/continue.yml b/src/jobs/continue.yml index a7ab06b..107468f 100644 --- a/src/jobs/continue.yml +++ b/src/jobs/continue.yml @@ -55,9 +55,15 @@ parameters: description: The executor to use for this job. By default, this will use the "default" executor provided by this orb. type: executor default: default + circleci_ip_ranges: + description: Enables jobs to go through a set of well-defined IP address ranges. + type: boolean + default: false executor: << parameters.executor >> +circleci_ip_ranges: << parameters.circleci_ip_ranges >> + steps: - when: condition: <> diff --git a/src/jobs/lint.yml b/src/jobs/lint.yml index 5dcbd77..e7c7465 100644 --- a/src/jobs/lint.yml +++ b/src/jobs/lint.yml @@ -15,9 +15,15 @@ parameters: description: The executor to use for this job. By default, this will use the "python" executor provided by this orb. type: executor default: python + circleci_ip_ranges: + description: Enables jobs to go through a set of well-defined IP address ranges. + type: boolean + default: false executor: << parameters.executor >> +circleci_ip_ranges: << parameters.circleci_ip_ranges >> + steps: - when: condition: <> diff --git a/src/jobs/pack.yml b/src/jobs/pack.yml index 5f895e3..7aea9ba 100644 --- a/src/jobs/pack.yml +++ b/src/jobs/pack.yml @@ -45,9 +45,15 @@ parameters: You can use "org_id" instead if you prefer. type: string default: "" + circleci_ip_ranges: + description: Enables jobs to go through a set of well-defined IP address ranges. + type: boolean + default: false executor: << parameters.executor >> +circleci_ip_ranges: << parameters.circleci_ip_ranges >> + steps: - when: condition: <> diff --git a/src/jobs/publish.yml b/src/jobs/publish.yml index 0202e40..577c93c 100644 --- a/src/jobs/publish.yml +++ b/src/jobs/publish.yml @@ -84,6 +84,10 @@ parameters: description: The executor to use for this job. By default, this will use the "default" executor provided by this orb. type: executor default: default + circleci_ip_ranges: + description: Enables jobs to go through a set of well-defined IP address ranges. + type: boolean + default: false attach_workspace: type: boolean default: true @@ -95,6 +99,8 @@ parameters: executor: << parameters.executor >> +circleci_ip_ranges: << parameters.circleci_ip_ranges >> + steps: - when: condition: <> diff --git a/src/jobs/review.yml b/src/jobs/review.yml index 8119e7c..f35afe4 100644 --- a/src/jobs/review.yml +++ b/src/jobs/review.yml @@ -36,9 +36,15 @@ parameters: description: The executor to use for this job. By default, this will use the "python" executor provided by this orb. type: executor default: python + circleci_ip_ranges: + description: Enables jobs to go through a set of well-defined IP address ranges. + type: boolean + default: false executor: << parameters.executor >> +circleci_ip_ranges: << parameters.circleci_ip_ranges >> + steps: - when: condition: <> diff --git a/src/scripts/publish.sh b/src/scripts/publish.sh index 829b4b3..f5291ce 100644 --- a/src/scripts/publish.sh +++ b/src/scripts/publish.sh @@ -87,4 +87,4 @@ function orbPublish() { ORB_RELEASE_VERSION="" ORB_VAL_ORB_PUB_TOKEN=${!ORB_VAL_ORB_PUB_TOKEN} mkdir -p /tmp/orb_dev_kit/ -orbPublish \ No newline at end of file +orbPublish diff --git a/src/scripts/review.bats b/src/scripts/review.bats index a2e2b55..aa9a6a2 100644 --- a/src/scripts/review.bats +++ b/src/scripts/review.bats @@ -44,7 +44,7 @@ setup() { fi } -@test "RC004: Usage example names shoud be descriptive." { +@test "RC004: Usage example names should be descriptive." { if [[ "${SKIPPED_REVIEW_CHECKS[*]}" =~ "RC004" ]]; then skip fi