Metadata-Version: 2.1
Name: gitlab-docs
Version: 0.1.0
Summary: A tool that automatically generates gitlab documentation from yaml files
Author: Charlie Smith
Author-email: me@charlieasmith.co.uk
Requires-Python: >=3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.2.1,<9.0.0)
Requires-Dist: jq (>=1.8.0,<2.0.0)
Requires-Dist: markdown-analysis
Requires-Dist: oyaml
Requires-Dist: prettytable
Requires-Dist: pytablewriter (>=1.2.0,<1.3.0)
Requires-Dist: semver (>=3.0.2,<4.0.0)
Requires-Dist: setuptools
Requires-Dist: typer (>=0.12.5,<0.13.0)
Description-Content-Type: text/markdown

## .gitlab-ci.yml

## Jobs

### MEGALINTER

|    **Key**    |               **Value**                |
| :-----------: | :------------------------------------: |
| **artifacts** |            'when': 'always'            |
|               |    'paths': ['megalinter-reports']     |
|               |         'expire_in': '1 week'          |
|   **image**   |  oxsecurity/megalinter-python:v8.0.0   |
|   **stage**   |              code-quality              |
| **variables** | 'DEFAULT_WORKSPACE': '$CI_PROJECT_DIR' |

### .BUILD:PYTHON

|     **Key**     |           **Value**            |
| :-------------: | :----------------------------: |
|  **artifacts**  |        'when': 'always'        |
|                 |  'paths': ['./dist/*.tar.gz']  |
|                 |     'expire_in': '1 hour'      |
| **environment** |            release             |
|  **id_tokens**  | 'PYPI_ID_TOKEN': 'aud': 'pypi' |
|    **needs**    |               []               |
|    **stage**    |              .pre              |

### BUILD

|   **Key**   |     **Value**     |
| :---------: | :---------------: |
| **extends** | ['.build:python'] |

### BUILD:DOCKER

|     **Key**      |       **Value**       |
| :--------------: | :-------------------: |
| **dependencies** |       ['build']       |
|    **image**     |     docker:latest     |
|   **services**   |    ['docker:dind']    |
|    **stage**     |         build         |
|     **tags**     | ['gitlab-org-docker'] |

### DOCKER-BUILD-MASTER

|     **Key**      |    **Value**    |
| :--------------: | :-------------: |
| **dependencies** |    ['build']    |
|    **image**     |  docker:latest  |
|   **services**   | ['docker:dind'] |
|    **stage**     |     promote     |

[comment]: <> (gitlab-docs-closing-auto-generated)

