From 7fae0ed147a667545671626dca72ff6f49295a5e Mon Sep 17 00:00:00 2001 From: vdovhanych Date: Thu, 16 May 2024 16:48:07 +0200 Subject: [PATCH] chore(ci): rename files to fit current naming convention --- .github/workflows/{crowdin_sync.yml => bot-crowdin-sync.yml} | 0 .../workflows/{validation.yml => check-code-validation.yml} | 0 .../{codeql_analysis.yml => check-codeql-analysis.yml} | 0 .../{commit-messages-check.yml => check-commit-message.yml} | 0 .../{shell_validation.yml => check-shell-validation.yml} | 3 ++- ...-test-e2e-android.yml => test-suite-native-e2e-android.yml} | 0 6 files changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{crowdin_sync.yml => bot-crowdin-sync.yml} (100%) rename .github/workflows/{validation.yml => check-code-validation.yml} (100%) rename .github/workflows/{codeql_analysis.yml => check-codeql-analysis.yml} (100%) rename .github/workflows/{commit-messages-check.yml => check-commit-message.yml} (100%) rename .github/workflows/{shell_validation.yml => check-shell-validation.yml} (92%) rename .github/workflows/{native-test-e2e-android.yml => test-suite-native-e2e-android.yml} (100%) diff --git a/.github/workflows/crowdin_sync.yml b/.github/workflows/bot-crowdin-sync.yml similarity index 100% rename from .github/workflows/crowdin_sync.yml rename to .github/workflows/bot-crowdin-sync.yml diff --git a/.github/workflows/validation.yml b/.github/workflows/check-code-validation.yml similarity index 100% rename from .github/workflows/validation.yml rename to .github/workflows/check-code-validation.yml diff --git a/.github/workflows/codeql_analysis.yml b/.github/workflows/check-codeql-analysis.yml similarity index 100% rename from .github/workflows/codeql_analysis.yml rename to .github/workflows/check-codeql-analysis.yml diff --git a/.github/workflows/commit-messages-check.yml b/.github/workflows/check-commit-message.yml similarity index 100% rename from .github/workflows/commit-messages-check.yml rename to .github/workflows/check-commit-message.yml diff --git a/.github/workflows/shell_validation.yml b/.github/workflows/check-shell-validation.yml similarity index 92% rename from .github/workflows/shell_validation.yml rename to .github/workflows/check-shell-validation.yml index bbb37081caa..ea647da18c0 100644 --- a/.github/workflows/shell_validation.yml +++ b/.github/workflows/check-shell-validation.yml @@ -4,13 +4,14 @@ on: pull_request: paths: - "**.sh" + concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true jobs: shellcheck: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/native-test-e2e-android.yml b/.github/workflows/test-suite-native-e2e-android.yml similarity index 100% rename from .github/workflows/native-test-e2e-android.yml rename to .github/workflows/test-suite-native-e2e-android.yml