Skip to content

Commit 3b44d8d

Browse files
committed
Docs content relocation
1 parent f51a586 commit 3b44d8d

65 files changed

Lines changed: 13 additions & 13 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/automatic-doc-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: [ main ]
77
pull_request:
88
paths:
9-
- 'releases/3.4/yaml/docs/**' # Only run on changes to the docs directory
9+
- 'docs/**' # Only run on changes to the docs directory
1010

1111
workflow_dispatch:
1212
# Manual trigger
@@ -20,5 +20,5 @@ jobs:
2020
documentation-checks:
2121
uses: canonical/documentation-workflows/.github/workflows/documentation-checks.yaml@main
2222
with:
23-
working-directory: "releases/3.4/yaml/docs"
23+
working-directory: "docs"
2424
fetch-depth: 0

.github/workflows/ci-uat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
pull_request:
99
paths-ignore:
10-
- 'releases/3.4/yaml/docs/**'
10+
- 'docs/**'
1111
- '**.md'
1212

1313
jobs:

.github/workflows/deploy-to-aks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Reference Architecture Testing (AKS)
22
on:
33
pull_request:
44
paths-ignore:
5-
- 'releases/3.4/yaml/docs/**'
5+
- 'docs/**'
66
- '**.md'
77
workflow_dispatch:
88
inputs:

.github/workflows/markdown-style-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'releases/3.4/yaml/docs/**' # Only run on changes to the docs directory
8+
- 'docs/**' # Only run on changes to the docs directory
99
pull_request:
1010
branches:
1111
- '*'
1212
paths:
13-
- 'releases/3.4/yaml/docs/**' # Only run on changes to the docs directory
13+
- 'docs/**' # Only run on changes to the docs directory
1414

1515
jobs:
1616
markdown-lint:
@@ -20,8 +20,8 @@ jobs:
2020
with:
2121
fetch-depth: 0
2222
- name: Create venv
23-
working-directory: "releases/3.4/yaml/docs"
23+
working-directory: "docs"
2424
run: make install
2525
- name: Lint markdown
26-
working-directory: "releases/3.4/yaml/docs"
26+
working-directory: "docs"
2727
run: make lint-md

.github/workflows/on_pull_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
on:
1111
pull_request:
1212
paths-ignore:
13-
- 'releases/3.4/yaml/docs/**'
13+
- 'docs/**'
1414
- '**.md'
1515

1616
jobs:

.readthedocs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ build:
1818
# This is a special exit code on Read the Docs that will cancel the build immediately.
1919
# https://docs.readthedocs.io/en/stable/build-customization.html#cancel-build-based-on-a-condition
2020
- |
21-
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- 'releases/3.4/yaml/docs/' '.readthedocs.yaml';
21+
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- 'docs/' '.readthedocs.yaml';
2222
then
2323
exit 183;
2424
fi
2525
2626
# Build documentation in the docs/ directory with Sphinx
2727
sphinx:
2828
builder: dirhtml
29-
configuration: releases/3.4/yaml/docs/conf.py
29+
configuration: docs/conf.py
3030
fail_on_warning: false
3131

3232
# If using Sphinx, optionally build your docs in additional formats such as PDF
@@ -36,4 +36,4 @@ sphinx:
3636
# Optionally declare the Python requirements required to build your docs
3737
python:
3838
install:
39-
- requirements: releases/3.4/yaml/docs/requirements.txt
39+
- requirements: docs/requirements.txt
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)