diff --git a/black.r2.yml b/black.r2.yml index 70e18040fdd96266b091b042bb193d94ed3b83ed..762df327cdbeb00d605ca428eb77939f0199bdbd 100644 --- a/black.r2.yml +++ b/black.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/black/black.yml - documentation: ./python/code_quality/black/README.md + template: ./templates/python/code_quality/black/black.yml + documentation: ./templates/python/code_quality/black/README.md data: description: "Run Black on your repository" icon: ⚫ diff --git a/flake8.r2.yml b/flake8.r2.yml index 5a05adc1ecdaa7d1cfab3d34e31a695176dc91f2..ad7323a8349f3d25c72b2ec6adb0880a051160e3 100644 --- a/flake8.r2.yml +++ b/flake8.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/flake8/flake8.yml - documentation: ./python/code_quality/flake8/README.md + template: ./templates/python/code_quality/flake8/flake8.yml + documentation: ./templates/python/code_quality/flake8/README.md data: description: "Run flake8 on your repository" icon: 💎 diff --git a/isort.r2.yml b/isort.r2.yml index 2d59d756066625f5063c10d789e87cf7625106fe..cfa893cdc6a6d2541cbf38ca895779dc82ef598a 100644 --- a/isort.r2.yml +++ b/isort.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/isort/isort.yml - documentation: ./python/code_quality/isort/README.md + template: ./templates/python/code_quality/isort/isort.yml + documentation: ./templates/python/code_quality/isort/README.md data: description: "Run isort on your repository" icon: 💎 diff --git a/mypy.r2.yml b/mypy.r2.yml index 105d9003698547be90d23a92978563e3d9d3f7b3..2085135abc7976eaada5e9c71fdd1176f23177f2 100644 --- a/mypy.r2.yml +++ b/mypy.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/mypy/mypy.yml - documentation: ./python/code_quality/mypy/README.md + template: ./templates/python/code_quality/mypy/mypy.yml + documentation: ./templates/python/code_quality/mypy/README.md data: description: "Run mypy on your repository" icon: 💎 diff --git a/pytest.r2.yml b/pytest.r2.yml index 761d62cd595ad7d2458f1a6f9b1de6e59c058627..147cf7909a72774fed968a0f527f54c420cbc73a 100644 --- a/pytest.r2.yml +++ b/pytest.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/testing/pytest/pytest.yml - documentation: ./python/testing/pytest/README.md + template: ./templates/python/testing/pytest/pytest.yml + documentation: ./templates/python/testing/pytest/README.md data: description: "Run pytest on your repository" icon: 💯 diff --git a/ruff.r2.yml b/ruff.r2.yml index 616bc6ac91fcc1cf9436b874985b37a66d1cbf2d..11519c210debfa7a131d9a9b9a76e8477a11efe9 100644 --- a/ruff.r2.yml +++ b/ruff.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/ruff/ruff.yml - documentation: ./python/code_quality/ruff/README.md + template: ./templates/python/code_quality/ruff/ruff.yml + documentation: ./templates/python/code_quality/ruff/README.md data: description: "Run ruff on your repository" icon: 💎 diff --git a/python/code_quality/black/README.md b/templates/python/code_quality/black/README.md similarity index 100% rename from python/code_quality/black/README.md rename to templates/python/code_quality/black/README.md diff --git a/python/code_quality/black/black.yml b/templates/python/code_quality/black/black.yml similarity index 100% rename from python/code_quality/black/black.yml rename to templates/python/code_quality/black/black.yml diff --git a/python/code_quality/flake8/README.md b/templates/python/code_quality/flake8/README.md similarity index 100% rename from python/code_quality/flake8/README.md rename to templates/python/code_quality/flake8/README.md diff --git a/python/code_quality/flake8/flake8.yml b/templates/python/code_quality/flake8/flake8.yml similarity index 100% rename from python/code_quality/flake8/flake8.yml rename to templates/python/code_quality/flake8/flake8.yml diff --git a/python/code_quality/isort/README.md b/templates/python/code_quality/isort/README.md similarity index 100% rename from python/code_quality/isort/README.md rename to templates/python/code_quality/isort/README.md diff --git a/python/code_quality/isort/isort.yml b/templates/python/code_quality/isort/isort.yml similarity index 100% rename from python/code_quality/isort/isort.yml rename to templates/python/code_quality/isort/isort.yml diff --git a/python/code_quality/mypy/README.md b/templates/python/code_quality/mypy/README.md similarity index 100% rename from python/code_quality/mypy/README.md rename to templates/python/code_quality/mypy/README.md diff --git a/python/code_quality/mypy/mypy.yml b/templates/python/code_quality/mypy/mypy.yml similarity index 100% rename from python/code_quality/mypy/mypy.yml rename to templates/python/code_quality/mypy/mypy.yml diff --git a/python/code_quality/ruff/README.md b/templates/python/code_quality/ruff/README.md similarity index 100% rename from python/code_quality/ruff/README.md rename to templates/python/code_quality/ruff/README.md diff --git a/python/code_quality/ruff/ruff.yml b/templates/python/code_quality/ruff/ruff.yml similarity index 100% rename from python/code_quality/ruff/ruff.yml rename to templates/python/code_quality/ruff/ruff.yml diff --git a/python/meta/README.md b/templates/python/meta/README.md similarity index 100% rename from python/meta/README.md rename to templates/python/meta/README.md diff --git a/python/meta/python_install.yml b/templates/python/meta/python_install.yml similarity index 100% rename from python/meta/python_install.yml rename to templates/python/meta/python_install.yml diff --git a/python/testing/pytest/README.md b/templates/python/testing/pytest/README.md similarity index 100% rename from python/testing/pytest/README.md rename to templates/python/testing/pytest/README.md diff --git a/python/testing/pytest/pytest.yml b/templates/python/testing/pytest/pytest.yml similarity index 100% rename from python/testing/pytest/pytest.yml rename to templates/python/testing/pytest/pytest.yml