From 15497a5b89fc8c2a3fbbc0576754c9794f1c16c7 Mon Sep 17 00:00:00 2001 From: Alexey Kramich <7685181@gmail.com> Date: Wed, 11 Feb 2026 08:53:12 +0300 Subject: [PATCH] feat: change filename extension `.yml` to `.yaml` --- .../{0-default.yml => 0-default.yaml} | 0 .../{config.yml => config.yaml} | 0 .github/{dependabot.yml => dependabot.yaml} | 0 ...docker-compose.yml => docker-compose.yaml} | 0 .github/workflows/{alpine.yml => alpine.yaml} | 0 .../{archlinux.yml => archlinux.yaml} | 0 .../workflows/{ci-conan.yml => ci-conan.yaml} | 0 .github/workflows/{ci.yml => ci.yaml} | 0 ...deql-analysis.yml => codeql-analysis.yaml} | 0 .github/workflows/{debian.yml => debian.yaml} | 0 .github/workflows/docker.yaml | 14 ++++----- .github/workflows/{fedora.yml => fedora.yaml} | 0 .github/workflows/{macos.yml => macos.yaml} | 0 ...ubuntu-minimal.yml => ubuntu-minimal.yaml} | 0 .mapping.json | 30 +++++++++---------- README.md | 22 +++++++------- .../{dependabot.yml => dependabot.yaml} | 0 .../.github/workflows/{ci.yml => ci.yaml} | 0 18 files changed, 33 insertions(+), 33 deletions(-) rename .github/ISSUE_TEMPLATE/{0-default.yml => 0-default.yaml} (100%) rename .github/ISSUE_TEMPLATE/{config.yml => config.yaml} (100%) rename .github/{dependabot.yml => dependabot.yaml} (100%) rename .github/{docker-compose.yml => docker-compose.yaml} (100%) rename .github/workflows/{alpine.yml => alpine.yaml} (100%) rename .github/workflows/{archlinux.yml => archlinux.yaml} (100%) rename .github/workflows/{ci-conan.yml => ci-conan.yaml} (100%) rename .github/workflows/{ci.yml => ci.yaml} (100%) rename .github/workflows/{codeql-analysis.yml => codeql-analysis.yaml} (100%) rename .github/workflows/{debian.yml => debian.yaml} (100%) rename .github/workflows/{fedora.yml => fedora.yaml} (100%) rename .github/workflows/{macos.yml => macos.yaml} (100%) rename .github/workflows/{ubuntu-minimal.yml => ubuntu-minimal.yaml} (100%) rename service_template/.github/{dependabot.yml => dependabot.yaml} (100%) rename service_template/.github/workflows/{ci.yml => ci.yaml} (100%) diff --git a/.github/ISSUE_TEMPLATE/0-default.yml b/.github/ISSUE_TEMPLATE/0-default.yaml similarity index 100% rename from .github/ISSUE_TEMPLATE/0-default.yml rename to .github/ISSUE_TEMPLATE/0-default.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yaml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yml rename to .github/ISSUE_TEMPLATE/config.yaml diff --git a/.github/dependabot.yml b/.github/dependabot.yaml similarity index 100% rename from .github/dependabot.yml rename to .github/dependabot.yaml diff --git a/.github/docker-compose.yml b/.github/docker-compose.yaml similarity index 100% rename from .github/docker-compose.yml rename to .github/docker-compose.yaml diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yaml similarity index 100% rename from .github/workflows/alpine.yml rename to .github/workflows/alpine.yaml diff --git a/.github/workflows/archlinux.yml b/.github/workflows/archlinux.yaml similarity index 100% rename from .github/workflows/archlinux.yml rename to .github/workflows/archlinux.yaml diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yaml similarity index 100% rename from .github/workflows/ci-conan.yml rename to .github/workflows/ci-conan.yaml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yaml similarity index 100% rename from .github/workflows/codeql-analysis.yml rename to .github/workflows/codeql-analysis.yaml diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yaml similarity index 100% rename from .github/workflows/debian.yml rename to .github/workflows/debian.yaml diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 7084c5a5f806..d450c325fec3 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -114,12 +114,12 @@ jobs: run: ./scripts/githubci_free_space.sh - name: Setup ccache - run: docker-compose -f .github/docker-compose.yml run --rm ${{ matrix.image + run: docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image }} bash -c 'ccache -M 2.0GB && ccache -s -v' - name: Run cmake run: >- - docker-compose -f .github/docker-compose.yml + docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image }} bash -c 'cd /userver && cmake -DUSERVER_GOOGLE_COMMON_PROTOS=/app/api-common-protos -DUSERVER_OPENTELEMETRY_PROTO=/app/opentelemetry-proto @@ -127,7 +127,7 @@ jobs: - name: Reconfigure cmake run: >- - docker-compose -f .github/docker-compose.yml + docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image }} bash -c 'cd /userver && cmake -DUSERVER_GOOGLE_COMMON_PROTOS=/app/api-common-protos -DUSERVER_OPENTELEMETRY_PROTO=/app/opentelemetry-proto @@ -135,7 +135,7 @@ jobs: - name: Compile run: >- - docker-compose -f .github/docker-compose.yml + docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image }} bash -c 'cd /userver && cmake --build build -j $(nproc)' @@ -149,19 +149,19 @@ jobs: - name: Run ydb if: matrix.id == 'ubuntu_clang16_cxx20' || matrix.id == 'ubuntu_gcc13_cxx20' - run: docker-compose -f .github/docker-compose.yml run -d --rm run-ydb + run: docker-compose -f .github/docker-compose.yaml run -d --rm run-ydb - name: Watch ydb if: matrix.id == 'ubuntu_clang16_cxx20' || matrix.id == 'ubuntu_gcc13_cxx20' run: >- - docker-compose -f .github/docker-compose.yml + docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image}} bash -c 'curl --retry 15 --retry-all-errors --retry-delay 5 -s -o /dev/null http://run-ydb:8765/monitoring/ -v' - name: Run tests run: >- - docker-compose -f .github/docker-compose.yml + docker-compose -f .github/docker-compose.yaml run --rm ${{ matrix.image}} bash -c 'cd /userver/build && ulimit -n 4096 && GTEST_FILTER="${{ matrix.gtest-filter }}" TESTSUITE_REDIS_HOSTNAME=::1 ctest -V' diff --git a/.github/workflows/fedora.yml b/.github/workflows/fedora.yaml similarity index 100% rename from .github/workflows/fedora.yml rename to .github/workflows/fedora.yaml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yaml similarity index 100% rename from .github/workflows/macos.yml rename to .github/workflows/macos.yaml diff --git a/.github/workflows/ubuntu-minimal.yml b/.github/workflows/ubuntu-minimal.yaml similarity index 100% rename from .github/workflows/ubuntu-minimal.yml rename to .github/workflows/ubuntu-minimal.yaml diff --git a/.mapping.json b/.mapping.json index 0ce1652e4eff..7f1a1ca30477 100644 --- a/.mapping.json +++ b/.mapping.json @@ -8,24 +8,24 @@ ".devcontainer/devcontainer.json":"taxi/uservices/userver/.devcontainer/devcontainer.json", ".editorconfig":"taxi/uservices/userver/.editorconfig", ".gitattributes":"taxi/uservices/userver/.gitattributes", - ".github/ISSUE_TEMPLATE/0-default.yml":"taxi/uservices/userver/.github/ISSUE_TEMPLATE/0-default.yml", - ".github/ISSUE_TEMPLATE/config.yml":"taxi/uservices/userver/.github/ISSUE_TEMPLATE/config.yml", - ".github/dependabot.yml":"taxi/uservices/userver/.github/dependabot.yml", - ".github/docker-compose.yml":"taxi/uservices/userver/.github/docker-compose.yml", + ".github/ISSUE_TEMPLATE/0-default.yaml":"taxi/uservices/userver/.github/ISSUE_TEMPLATE/0-default.yaml", + ".github/ISSUE_TEMPLATE/config.yaml":"taxi/uservices/userver/.github/ISSUE_TEMPLATE/config.yaml", + ".github/dependabot.yaml":"taxi/uservices/userver/.github/dependabot.yaml", + ".github/docker-compose.yaml":"taxi/uservices/userver/.github/docker-compose.yaml", ".github/pull_request_template.md":"taxi/uservices/userver/.github/pull_request_template.md", - ".github/workflows/alpine.yml":"taxi/uservices/userver/.github/workflows/alpine.yml", - ".github/workflows/archlinux.yml":"taxi/uservices/userver/.github/workflows/archlinux.yml", - ".github/workflows/ci-conan.yml":"taxi/uservices/userver/.github/workflows/ci-conan.yml", - ".github/workflows/ci.yml":"taxi/uservices/userver/.github/workflows/ci.yml", - ".github/workflows/codeql-analysis.yml":"taxi/uservices/userver/.github/workflows/codeql-analysis.yml", - ".github/workflows/debian.yml":"taxi/uservices/userver/.github/workflows/debian.yml", + ".github/workflows/alpine.yaml":"taxi/uservices/userver/.github/workflows/alpine.yaml", + ".github/workflows/archlinux.yaml":"taxi/uservices/userver/.github/workflows/archlinux.yaml", + ".github/workflows/ci-conan.yaml":"taxi/uservices/userver/.github/workflows/ci-conan.yaml", + ".github/workflows/ci.yaml":"taxi/uservices/userver/.github/workflows/ci.yaml", + ".github/workflows/codeql-analysis.yaml":"taxi/uservices/userver/.github/workflows/codeql-analysis.yaml", + ".github/workflows/debian.yaml":"taxi/uservices/userver/.github/workflows/debian.yaml", ".github/workflows/docker.yaml":"taxi/uservices/userver/.github/workflows/docker.yaml", - ".github/workflows/fedora.yml":"taxi/uservices/userver/.github/workflows/fedora.yml", - ".github/workflows/macos.yml":"taxi/uservices/userver/.github/workflows/macos.yml", + ".github/workflows/fedora.yaml":"taxi/uservices/userver/.github/workflows/fedora.yaml", + ".github/workflows/macos.yaml":"taxi/uservices/userver/.github/workflows/macos.yaml", ".github/workflows/publish-ubuntu-22.04-base-images.yaml":"taxi/uservices/userver/.github/workflows/publish-ubuntu-22.04-base-images.yaml", ".github/workflows/publish-ubuntu-22.04-images.yaml":"taxi/uservices/userver/.github/workflows/publish-ubuntu-22.04-images.yaml", ".github/workflows/publish-ubuntu-24.04-images.yaml":"taxi/uservices/userver/.github/workflows/publish-ubuntu-24.04-images.yaml", - ".github/workflows/ubuntu-minimal.yml":"taxi/uservices/userver/.github/workflows/ubuntu-minimal.yml", + ".github/workflows/ubuntu-minimal.yaml":"taxi/uservices/userver/.github/workflows/ubuntu-minimal.yaml", ".gitignore":"taxi/uservices/userver/.gitignore", "AUTHORS":"taxi/uservices/userver/AUTHORS", "CMakeLists.txt":"taxi/uservices/userver/CMakeLists.txt", @@ -4774,8 +4774,8 @@ "service_template/.clang-format":"taxi/uservices/userver/service_template/.clang-format", "service_template/.devcontainer/README.md":"taxi/uservices/userver/service_template/.devcontainer/README.md", "service_template/.devcontainer/devcontainer.json":"taxi/uservices/userver/service_template/.devcontainer/devcontainer.json", - "service_template/.github/dependabot.yml":"taxi/uservices/userver/service_template/.github/dependabot.yml", - "service_template/.github/workflows/ci.yml":"taxi/uservices/userver/service_template/.github/workflows/ci.yml", + "service_template/.github/dependabot.yaml":"taxi/uservices/userver/service_template/.github/dependabot.yaml", + "service_template/.github/workflows/ci.yaml":"taxi/uservices/userver/service_template/.github/workflows/ci.yaml", "service_template/.github/workflows/docker.yaml":"taxi/uservices/userver/service_template/.github/workflows/docker.yaml", "service_template/.gitignore":"taxi/uservices/userver/service_template/.gitignore", "service_template/.vscode/README.md":"taxi/uservices/userver/service_template/.vscode/README.md", diff --git a/README.md b/README.md index f4a9011a9e55..3dad541c5775 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ # userver [](https://userver.tech/) -[![Ubuntu](https://github.com/userver-framework/userver/actions/workflows/ci.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/ci.yml) -[![Fedora](https://github.com/userver-framework/userver/actions/workflows/fedora.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/fedora.yml) -[![Debian](https://github.com/userver-framework/userver/actions/workflows/debian.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/debian.yml) -[![MacOS](https://github.com/userver-framework/userver/actions/workflows/macos.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/macos.yml) -[![Alpine](https://github.com/userver-framework/userver/actions/workflows/alpine.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/alpine.yml) -[![Arch](https://github.com/userver-framework/userver/actions/workflows/archlinux.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/archlinux.yml) +[![Ubuntu](https://github.com/userver-framework/userver/actions/workflows/ci.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/ci.yaml) +[![Fedora](https://github.com/userver-framework/userver/actions/workflows/fedora.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/fedora.yaml) +[![Debian](https://github.com/userver-framework/userver/actions/workflows/debian.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/debian.yaml) +[![MacOS](https://github.com/userver-framework/userver/actions/workflows/macos.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/macos.yaml) +[![Alpine](https://github.com/userver-framework/userver/actions/workflows/alpine.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/alpine.yaml) +[![Arch](https://github.com/userver-framework/userver/actions/workflows/archlinux.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/archlinux.yaml) [![Docker CI](https://github.com/userver-framework/userver/actions/workflows/docker.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/docker.yaml) -[![Conan](https://github.com/userver-framework/userver/actions/workflows/ci-conan.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/ci-conan.yml) -[![CodeQL](https://github.com/userver-framework/userver/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/codeql-analysis.yml) +[![Conan](https://github.com/userver-framework/userver/actions/workflows/ci-conan.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/ci-conan.yaml) +[![CodeQL](https://github.com/userver-framework/userver/actions/workflows/codeql-analysis.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/codeql-analysis.yaml) [![Build and publish ubuntu-24.04-userver images](https://github.com/userver-framework/userver/actions/workflows/publish-ubuntu-24.04-images.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/publish-ubuntu-24.04-images.yaml) [![Build and publish ubuntu-22.04-userver images](https://github.com/userver-framework/userver/actions/workflows/publish-ubuntu-22.04-images.yaml/badge.svg)](https://github.com/userver-framework/userver/actions/workflows/publish-ubuntu-22.04-images.yaml) -[![uservice-dynconf CI](https://github.com/userver-framework/uservice-dynconf/actions/workflows/ci.yml/badge.svg)](https://github.com/userver-framework/uservice-dynconf/actions/workflows/ci.yml) +[![uservice-dynconf CI](https://github.com/userver-framework/uservice-dynconf/actions/workflows/ci.yaml/badge.svg)](https://github.com/userver-framework/uservice-dynconf/actions/workflows/ci.yaml) [![uservice-dynconf Docker build](https://github.com/userver-framework/uservice-dynconf/actions/workflows/docker.yaml/badge.svg?branch=develop)](https://github.com/userver-framework/uservice-dynconf/actions/workflows/docker.yaml) -[![urealmedium CI](https://github.com/userver-framework/realmedium_sample/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/userver-framework/realmedium_sample/actions/workflows/ci.yml) +[![urealmedium CI](https://github.com/userver-framework/realmedium_sample/actions/workflows/ci.yaml/badge.svg?branch=develop)](https://github.com/userver-framework/realmedium_sample/actions/workflows/ci.yaml) [![urealmedium Docker build](https://github.com/userver-framework/realmedium_sample/actions/workflows/docker.yaml/badge.svg?branch=develop)](https://github.com/userver-framework/realmedium_sample/actions/workflows/docker.yaml) -[![upastebin CI](https://github.com/userver-framework/upastebin/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/userver-framework/upastebin/actions/workflows/ci.yml) +[![upastebin CI](https://github.com/userver-framework/upastebin/actions/workflows/ci.yaml/badge.svg?branch=develop)](https://github.com/userver-framework/upastebin/actions/workflows/ci.yaml) [![upastebin Docker](https://github.com/userver-framework/upastebin/actions/workflows/docker.yaml/badge.svg?branch=develop)](https://github.com/userver-framework/upastebin/actions/workflows/docker.yaml) diff --git a/service_template/.github/dependabot.yml b/service_template/.github/dependabot.yaml similarity index 100% rename from service_template/.github/dependabot.yml rename to service_template/.github/dependabot.yaml diff --git a/service_template/.github/workflows/ci.yml b/service_template/.github/workflows/ci.yaml similarity index 100% rename from service_template/.github/workflows/ci.yml rename to service_template/.github/workflows/ci.yaml