Skip to content

Commit 74aacba

Browse files
committed
Removed @see from YAML files.
Signed-off-by: Alex Skrypnyk <alex@drevops.com>
1 parent d66991a commit 74aacba

File tree

11 files changed

+45
-45
lines changed

11 files changed

+45
-45
lines changed

.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ aliases:
5555
docker:
5656
# Using the 'runner' container where each job will be executed.
5757
# This container has all the necessary tools to run a dockerized environment.
58-
# @see https://github.com/drevops/ci-runner
59-
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
58+
# https://github.com/drevops/ci-runner
59+
# https://hub.docker.com/repository/docker/drevops/ci-runner/tags
6060
- image: drevops/ci-runner:25.3.0
6161
auth:
6262
username: ${VORTEX_CONTAINER_REGISTRY_USER}
6363
password: ${VORTEX_CONTAINER_REGISTRY_PASS}
6464
environment:
6565
# Set runner timezone to ensure that executed operations use correct timestamps.
66-
# @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
66+
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
6767
TZ: "Australia/Melbourne"
6868
# Set runner terminal capabilities.
6969
TERM: xterm-256color
@@ -96,7 +96,7 @@ aliases:
9696
# Check only minimal stack requirements.
9797
VORTEX_DOCTOR_CHECK_MINIMAL: 1
9898
# CI runner resource class.
99-
# @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
99+
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
100100
# Change to 'large' for faster builds.
101101
resource_class: medium
102102

@@ -105,7 +105,7 @@ aliases:
105105
setup_remote_docker:
106106
# Docker Layer Caching allows to significantly speed up builds by caching
107107
# images built during previous runs.
108-
# @see https://circleci.com/docs/2.0/docker-layer-caching/
108+
# https://circleci.com/docs/2.0/docker-layer-caching/
109109
docker_layer_caching: false
110110
version: default
111111

@@ -154,7 +154,7 @@ jobs:
154154
- restore_cache:
155155
keys:
156156
# Restore DB cache based on the cache strategy set by the cache keys below.
157-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
157+
# https://circleci.com/docs/2.0/caching/#restoring-cache
158158
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
159159
# Lookup cache based on the default branch and a timestamp. Allows
160160
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -236,7 +236,7 @@ jobs:
236236
- restore_cache:
237237
keys:
238238
# Use cached artifacts from previous builds of this branch.
239-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
239+
# https://circleci.com/docs/2.0/caching/#restoring-cache
240240
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
241241
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
242242
#;> !PROVISION_TYPE_PROFILE

.github/workflows/build-test-deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: Preserve $HOME set in the container
81-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
81+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
8282

8383
- name: Check out code
8484
uses: actions/checkout@v4
@@ -189,7 +189,7 @@ jobs:
189189

190190
steps:
191191
- name: Preserve $HOME set in the container
192-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
192+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
193193

194194
- name: Check out code
195195
uses: actions/checkout@v4
@@ -372,7 +372,7 @@ jobs:
372372

373373
steps:
374374
- name: Preserve $HOME set in the container
375-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
375+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
376376

377377
- name: Checkout code
378378
uses: actions/checkout@v4

.lagoon.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tasks:
7171
#;< PROVISION_TYPE_PROFILE
7272
if [ "VORTEX_PROVISION_TYPE" = "profile" ]; then
7373
# Explicitly set DB overwrite flag to the value from .env file for deployments from the profile.
74-
# @see https://github.com/uselagoon/lagoon/issues/1922
74+
# https://github.com/uselagoon/lagoon/issues/1922
7575
export VORTEX_PROVISION_OVERRIDE_DB="$(cat .env | grep ^VORTEX_PROVISION_OVERRIDE_DB | cut -c31-)"
7676
fi
7777
#;> PROVISION_TYPE_PROFILE

.vortex/docs/terminalizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Terminalizer configuration file.
2-
# @see https://www.terminalizer.com/
2+
# https://www.terminalizer.com/
33

44
config:
55

.vortex/installer/tests/Fixtures/install/_baseline/.github/workflows/build-test-deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Preserve $HOME set in the container
75-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
75+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
7676

7777
- name: Check out code
7878
uses: actions/checkout@__VERSION__
@@ -178,7 +178,7 @@ jobs:
178178

179179
steps:
180180
- name: Preserve $HOME set in the container
181-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
181+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
182182

183183
- name: Check out code
184184
uses: actions/checkout@__VERSION__
@@ -354,7 +354,7 @@ jobs:
354354

355355
steps:
356356
- name: Preserve $HOME set in the container
357-
run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
357+
run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
358358

359359
- name: Checkout code
360360
uses: actions/checkout@__VERSION__

.vortex/installer/tests/Fixtures/install/ciprovider_circleci/.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ aliases:
3838
docker:
3939
# Using the 'runner' container where each job will be executed.
4040
# This container has all the necessary tools to run a dockerized environment.
41-
# @see https://github.com/drevops/ci-runner
42-
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
41+
# https://github.com/drevops/ci-runner
42+
# https://hub.docker.com/repository/docker/drevops/ci-runner/tags
4343
- image: drevops/ci-runner:__VERSION__
4444
auth:
4545
username: ${VORTEX_CONTAINER_REGISTRY_USER}
4646
password: ${VORTEX_CONTAINER_REGISTRY_PASS}
4747
environment:
4848
# Set runner timezone to ensure that executed operations use correct timestamps.
49-
# @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
49+
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
5050
TZ: "Australia/Melbourne"
5151
# Set runner terminal capabilities.
5252
TERM: xterm-256color
@@ -77,7 +77,7 @@ aliases:
7777
# Check only minimal stack requirements.
7878
VORTEX_DOCTOR_CHECK_MINIMAL: 1
7979
# CI runner resource class.
80-
# @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
80+
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
8181
# Change to 'large' for faster builds.
8282
resource_class: medium
8383

@@ -86,7 +86,7 @@ aliases:
8686
setup_remote_docker:
8787
# Docker Layer Caching allows to significantly speed up builds by caching
8888
# images built during previous runs.
89-
# @see https://circleci.com/docs/2.0/docker-layer-caching/
89+
# https://circleci.com/docs/2.0/docker-layer-caching/
9090
docker_layer_caching: false
9191
version: default
9292

@@ -134,7 +134,7 @@ jobs:
134134
- restore_cache:
135135
keys:
136136
# Restore DB cache based on the cache strategy set by the cache keys below.
137-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
137+
# https://circleci.com/docs/2.0/caching/#restoring-cache
138138
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
139139
# Lookup cache based on the default branch and a timestamp. Allows
140140
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -214,7 +214,7 @@ jobs:
214214
- restore_cache:
215215
keys:
216216
# Use cached artifacts from previous builds of this branch.
217-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
217+
# https://circleci.com/docs/2.0/caching/#restoring-cache
218218
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
219219
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
220220

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ aliases:
3838
docker:
3939
# Using the 'runner' container where each job will be executed.
4040
# This container has all the necessary tools to run a dockerized environment.
41-
# @see https://github.com/drevops/ci-runner
42-
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
41+
# https://github.com/drevops/ci-runner
42+
# https://hub.docker.com/repository/docker/drevops/ci-runner/tags
4343
- image: drevops/ci-runner:__VERSION__
4444
auth:
4545
username: ${VORTEX_CONTAINER_REGISTRY_USER}
4646
password: ${VORTEX_CONTAINER_REGISTRY_PASS}
4747
environment:
4848
# Set runner timezone to ensure that executed operations use correct timestamps.
49-
# @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
49+
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
5050
TZ: "Australia/Melbourne"
5151
# Set runner terminal capabilities.
5252
TERM: xterm-256color
@@ -77,7 +77,7 @@ aliases:
7777
# Check only minimal stack requirements.
7878
VORTEX_DOCTOR_CHECK_MINIMAL: 1
7979
# CI runner resource class.
80-
# @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
80+
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
8181
# Change to 'large' for faster builds.
8282
resource_class: medium
8383

@@ -86,7 +86,7 @@ aliases:
8686
setup_remote_docker:
8787
# Docker Layer Caching allows to significantly speed up builds by caching
8888
# images built during previous runs.
89-
# @see https://circleci.com/docs/2.0/docker-layer-caching/
89+
# https://circleci.com/docs/2.0/docker-layer-caching/
9090
docker_layer_caching: false
9191
version: default
9292

@@ -134,7 +134,7 @@ jobs:
134134
- restore_cache:
135135
keys:
136136
# Restore DB cache based on the cache strategy set by the cache keys below.
137-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
137+
# https://circleci.com/docs/2.0/caching/#restoring-cache
138138
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
139139
# Lookup cache based on the default branch and a timestamp. Allows
140140
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -214,7 +214,7 @@ jobs:
214214
- restore_cache:
215215
keys:
216216
# Use cached artifacts from previous builds of this branch.
217-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
217+
# https://circleci.com/docs/2.0/caching/#restoring-cache
218218
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
219219
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
220220

.vortex/installer/tests/Fixtures/install/deploy_type_none_circleci/.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ aliases:
3838
docker:
3939
# Using the 'runner' container where each job will be executed.
4040
# This container has all the necessary tools to run a dockerized environment.
41-
# @see https://github.com/drevops/ci-runner
42-
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
41+
# https://github.com/drevops/ci-runner
42+
# https://hub.docker.com/repository/docker/drevops/ci-runner/tags
4343
- image: drevops/ci-runner:__VERSION__
4444
auth:
4545
username: ${VORTEX_CONTAINER_REGISTRY_USER}
4646
password: ${VORTEX_CONTAINER_REGISTRY_PASS}
4747
environment:
4848
# Set runner timezone to ensure that executed operations use correct timestamps.
49-
# @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
49+
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
5050
TZ: "Australia/Melbourne"
5151
# Set runner terminal capabilities.
5252
TERM: xterm-256color
@@ -77,7 +77,7 @@ aliases:
7777
# Check only minimal stack requirements.
7878
VORTEX_DOCTOR_CHECK_MINIMAL: 1
7979
# CI runner resource class.
80-
# @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
80+
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
8181
# Change to 'large' for faster builds.
8282
resource_class: medium
8383

@@ -86,7 +86,7 @@ aliases:
8686
setup_remote_docker:
8787
# Docker Layer Caching allows to significantly speed up builds by caching
8888
# images built during previous runs.
89-
# @see https://circleci.com/docs/2.0/docker-layer-caching/
89+
# https://circleci.com/docs/2.0/docker-layer-caching/
9090
docker_layer_caching: false
9191
version: default
9292

@@ -134,7 +134,7 @@ jobs:
134134
- restore_cache:
135135
keys:
136136
# Restore DB cache based on the cache strategy set by the cache keys below.
137-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
137+
# https://circleci.com/docs/2.0/caching/#restoring-cache
138138
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
139139
# Lookup cache based on the default branch and a timestamp. Allows
140140
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -214,7 +214,7 @@ jobs:
214214
- restore_cache:
215215
keys:
216216
# Use cached artifacts from previous builds of this branch.
217-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
217+
# https://circleci.com/docs/2.0/caching/#restoring-cache
218218
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
219219
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
220220

.vortex/installer/tests/Fixtures/install/deploy_type_none_gha/.github/workflows/build-test-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
-
1818
- steps:
1919
- - name: Preserve $HOME set in the container
20-
- run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
20+
- run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
2121
-
2222
- - name: Checkout code
2323
- uses: actions/checkout@__VERSION__

.vortex/installer/tests/Fixtures/install/deps_updates_provider_ci_circleci/.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ aliases:
3838
docker:
3939
# Using the 'runner' container where each job will be executed.
4040
# This container has all the necessary tools to run a dockerized environment.
41-
# @see https://github.com/drevops/ci-runner
42-
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
41+
# https://github.com/drevops/ci-runner
42+
# https://hub.docker.com/repository/docker/drevops/ci-runner/tags
4343
- image: drevops/ci-runner:__VERSION__
4444
auth:
4545
username: ${VORTEX_CONTAINER_REGISTRY_USER}
4646
password: ${VORTEX_CONTAINER_REGISTRY_PASS}
4747
environment:
4848
# Set runner timezone to ensure that executed operations use correct timestamps.
49-
# @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
49+
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
5050
TZ: "Australia/Melbourne"
5151
# Set runner terminal capabilities.
5252
TERM: xterm-256color
@@ -77,7 +77,7 @@ aliases:
7777
# Check only minimal stack requirements.
7878
VORTEX_DOCTOR_CHECK_MINIMAL: 1
7979
# CI runner resource class.
80-
# @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
80+
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
8181
# Change to 'large' for faster builds.
8282
resource_class: medium
8383

@@ -86,7 +86,7 @@ aliases:
8686
setup_remote_docker:
8787
# Docker Layer Caching allows to significantly speed up builds by caching
8888
# images built during previous runs.
89-
# @see https://circleci.com/docs/2.0/docker-layer-caching/
89+
# https://circleci.com/docs/2.0/docker-layer-caching/
9090
docker_layer_caching: false
9191
version: default
9292

@@ -134,7 +134,7 @@ jobs:
134134
- restore_cache:
135135
keys:
136136
# Restore DB cache based on the cache strategy set by the cache keys below.
137-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
137+
# https://circleci.com/docs/2.0/caching/#restoring-cache
138138
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
139139
# Lookup cache based on the default branch and a timestamp. Allows
140140
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -214,7 +214,7 @@ jobs:
214214
- restore_cache:
215215
keys:
216216
# Use cached artifacts from previous builds of this branch.
217-
# @see https://circleci.com/docs/2.0/caching/#restoring-cache
217+
# https://circleci.com/docs/2.0/caching/#restoring-cache
218218
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
219219
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
220220

.vortex/installer/tests/Fixtures/install/provision_profile/.github/workflows/build-test-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
-
3838
- steps:
3939
- - name: Preserve $HOME set in the container
40-
- run: echo HOME=/root >> "$GITHUB_ENV" # @see https://github.com/actions/runner/issues/863
40+
- run: echo HOME=/root >> "$GITHUB_ENV" # https://github.com/actions/runner/issues/863
4141
-
4242
- - name: Check out code
4343
- uses: actions/checkout@__VERSION__

0 commit comments

Comments
 (0)