From cdec695c95c84e5cdecd32423cca01928e25438f Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Tue, 29 Oct 2024 17:47:08 +0100 Subject: [PATCH] chore(ci): harmonize workflow file names with `_` (#3756) --- .github/workflows/_vercel_deploy.yml | 16 ++++++++-------- ...ackend.deploy.yml => apps_backend_deploy.yml} | 0 ...lorer.deploy.yml => apps_explorer_deploy.yml} | 0 ...-ui-kit.deploy.yml => apps_ui_kit_deploy.yml} | 0 ...ploy.yml => apps_wallet_dashboard_deploy.yml} | 0 ...y.build.yml => apps_wallet_nightly_build.yml} | 0 ...let-rc.build.yml => apps_wallet_rc_build.yml} | 0 .../{build-nightly.yml => build_nightly.yml} | 0 .../{cargo-llvm-cov.yml => cargo_llvm_cov.yml} | 0 .../{changesets-ci.yml => changesets_ci.yml} | 0 ...-ci-comment.yml => changesets_ci_comment.yml} | 0 ...gesets-publish.yml => changesets_publish.yml} | 0 .../workflows/{crate-docs.yml => crate_docs.yml} | 0 ...ck-report.yml => develop_ci_slack_report.yml} | 0 .../{preview-wiki.yml => preview_wiki.yml} | 0 .../{release-docker.yml => release_docker.yml} | 0 ...tes-monitor.yml => release_notes_monitor.yml} | 0 .../{release-wiki.yml => release_wiki.yml} | 0 ...mulator-nightly.yml => simulator_nightly.yml} | 0 .../{split-cluster.yml => split_cluster.yml} | 0 .../{trigger-builds.yml => trigger_builds.yml} | 0 21 files changed, 8 insertions(+), 8 deletions(-) rename .github/workflows/{apps-backend.deploy.yml => apps_backend_deploy.yml} (100%) rename .github/workflows/{apps-explorer.deploy.yml => apps_explorer_deploy.yml} (100%) rename .github/workflows/{apps-ui-kit.deploy.yml => apps_ui_kit_deploy.yml} (100%) rename .github/workflows/{apps-wallet-dashboard.deploy.yml => apps_wallet_dashboard_deploy.yml} (100%) rename .github/workflows/{apps-wallet-nightly.build.yml => apps_wallet_nightly_build.yml} (100%) rename .github/workflows/{apps-wallet-rc.build.yml => apps_wallet_rc_build.yml} (100%) rename .github/workflows/{build-nightly.yml => build_nightly.yml} (100%) rename .github/workflows/{cargo-llvm-cov.yml => cargo_llvm_cov.yml} (100%) rename .github/workflows/{changesets-ci.yml => changesets_ci.yml} (100%) rename .github/workflows/{changesets-ci-comment.yml => changesets_ci_comment.yml} (100%) rename .github/workflows/{changesets-publish.yml => changesets_publish.yml} (100%) rename .github/workflows/{crate-docs.yml => crate_docs.yml} (100%) rename .github/workflows/{develop-ci-slack-report.yml => develop_ci_slack_report.yml} (100%) rename .github/workflows/{preview-wiki.yml => preview_wiki.yml} (100%) rename .github/workflows/{release-docker.yml => release_docker.yml} (100%) rename .github/workflows/{release-notes-monitor.yml => release_notes_monitor.yml} (100%) rename .github/workflows/{release-wiki.yml => release_wiki.yml} (100%) rename .github/workflows/{simulator-nightly.yml => simulator_nightly.yml} (100%) rename .github/workflows/{split-cluster.yml => split_cluster.yml} (100%) rename .github/workflows/{trigger-builds.yml => trigger_builds.yml} (100%) diff --git a/.github/workflows/_vercel_deploy.yml b/.github/workflows/_vercel_deploy.yml index 4aa236a5472..b1efe39a2ea 100644 --- a/.github/workflows/_vercel_deploy.yml +++ b/.github/workflows/_vercel_deploy.yml @@ -36,7 +36,7 @@ jobs: explorer-preview: name: Vercel Explorer Preview if: inputs.shouldDeployPreview && inputs.isExplorer - uses: ./.github/workflows/apps-explorer.deploy.yml + uses: ./.github/workflows/apps_explorer_deploy.yml secrets: inherit with: isProd: false @@ -44,7 +44,7 @@ jobs: explorer-prod: name: Vercel Explorer Production if: inputs.isDevelop - uses: ./.github/workflows/apps-explorer.deploy.yml + uses: ./.github/workflows/apps_explorer_deploy.yml secrets: inherit with: isProd: true @@ -52,7 +52,7 @@ jobs: ui-kit-preview: name: Vercel UI Kit Preview if: inputs.shouldDeployPreview && inputs.isAppsUiKit - uses: ./.github/workflows/apps-ui-kit.deploy.yml + uses: ./.github/workflows/apps_ui_kit_deploy.yml secrets: inherit with: isProd: false @@ -60,7 +60,7 @@ jobs: ui-kit-prod: name: Vercel UI Kit Production if: inputs.isDevelop - uses: ./.github/workflows/apps-ui-kit.deploy.yml + uses: ./.github/workflows/apps_ui_kit_deploy.yml secrets: inherit with: isProd: true @@ -68,7 +68,7 @@ jobs: wallet-dashboard-preview: name: Vercel Wallet Dashboard Preview if: inputs.shouldDeployPreview && inputs.isWalletDashboard - uses: ./.github/workflows/apps-wallet-dashboard.deploy.yml + uses: ./.github/workflows/apps_wallet_dashboard_deploy.yml secrets: inherit with: isProd: false @@ -76,7 +76,7 @@ jobs: wallet-dashboard-prod: name: Vercel Wallet Dashboard Production if: inputs.isDevelop - uses: ./.github/workflows/apps-wallet-dashboard.deploy.yml + uses: ./.github/workflows/apps_wallet_dashboard_deploy.yml secrets: inherit with: isProd: true @@ -84,7 +84,7 @@ jobs: apps-backend-preview: name: Vercel apps-backend Preview if: inputs.shouldDeployPreview && inputs.isAppsBackend - uses: ./.github/workflows/apps-backend.deploy.yml + uses: ./.github/workflows/apps_backend_deploy.yml secrets: inherit with: isProd: false @@ -92,7 +92,7 @@ jobs: apps-backend-prod: name: Vercel apps-backend Production if: inputs.isDevelop - uses: ./.github/workflows/apps-backend.deploy.yml + uses: ./.github/workflows/apps_backend_deploy.yml secrets: inherit with: isProd: true diff --git a/.github/workflows/apps-backend.deploy.yml b/.github/workflows/apps_backend_deploy.yml similarity index 100% rename from .github/workflows/apps-backend.deploy.yml rename to .github/workflows/apps_backend_deploy.yml diff --git a/.github/workflows/apps-explorer.deploy.yml b/.github/workflows/apps_explorer_deploy.yml similarity index 100% rename from .github/workflows/apps-explorer.deploy.yml rename to .github/workflows/apps_explorer_deploy.yml diff --git a/.github/workflows/apps-ui-kit.deploy.yml b/.github/workflows/apps_ui_kit_deploy.yml similarity index 100% rename from .github/workflows/apps-ui-kit.deploy.yml rename to .github/workflows/apps_ui_kit_deploy.yml diff --git a/.github/workflows/apps-wallet-dashboard.deploy.yml b/.github/workflows/apps_wallet_dashboard_deploy.yml similarity index 100% rename from .github/workflows/apps-wallet-dashboard.deploy.yml rename to .github/workflows/apps_wallet_dashboard_deploy.yml diff --git a/.github/workflows/apps-wallet-nightly.build.yml b/.github/workflows/apps_wallet_nightly_build.yml similarity index 100% rename from .github/workflows/apps-wallet-nightly.build.yml rename to .github/workflows/apps_wallet_nightly_build.yml diff --git a/.github/workflows/apps-wallet-rc.build.yml b/.github/workflows/apps_wallet_rc_build.yml similarity index 100% rename from .github/workflows/apps-wallet-rc.build.yml rename to .github/workflows/apps_wallet_rc_build.yml diff --git a/.github/workflows/build-nightly.yml b/.github/workflows/build_nightly.yml similarity index 100% rename from .github/workflows/build-nightly.yml rename to .github/workflows/build_nightly.yml diff --git a/.github/workflows/cargo-llvm-cov.yml b/.github/workflows/cargo_llvm_cov.yml similarity index 100% rename from .github/workflows/cargo-llvm-cov.yml rename to .github/workflows/cargo_llvm_cov.yml diff --git a/.github/workflows/changesets-ci.yml b/.github/workflows/changesets_ci.yml similarity index 100% rename from .github/workflows/changesets-ci.yml rename to .github/workflows/changesets_ci.yml diff --git a/.github/workflows/changesets-ci-comment.yml b/.github/workflows/changesets_ci_comment.yml similarity index 100% rename from .github/workflows/changesets-ci-comment.yml rename to .github/workflows/changesets_ci_comment.yml diff --git a/.github/workflows/changesets-publish.yml b/.github/workflows/changesets_publish.yml similarity index 100% rename from .github/workflows/changesets-publish.yml rename to .github/workflows/changesets_publish.yml diff --git a/.github/workflows/crate-docs.yml b/.github/workflows/crate_docs.yml similarity index 100% rename from .github/workflows/crate-docs.yml rename to .github/workflows/crate_docs.yml diff --git a/.github/workflows/develop-ci-slack-report.yml b/.github/workflows/develop_ci_slack_report.yml similarity index 100% rename from .github/workflows/develop-ci-slack-report.yml rename to .github/workflows/develop_ci_slack_report.yml diff --git a/.github/workflows/preview-wiki.yml b/.github/workflows/preview_wiki.yml similarity index 100% rename from .github/workflows/preview-wiki.yml rename to .github/workflows/preview_wiki.yml diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release_docker.yml similarity index 100% rename from .github/workflows/release-docker.yml rename to .github/workflows/release_docker.yml diff --git a/.github/workflows/release-notes-monitor.yml b/.github/workflows/release_notes_monitor.yml similarity index 100% rename from .github/workflows/release-notes-monitor.yml rename to .github/workflows/release_notes_monitor.yml diff --git a/.github/workflows/release-wiki.yml b/.github/workflows/release_wiki.yml similarity index 100% rename from .github/workflows/release-wiki.yml rename to .github/workflows/release_wiki.yml diff --git a/.github/workflows/simulator-nightly.yml b/.github/workflows/simulator_nightly.yml similarity index 100% rename from .github/workflows/simulator-nightly.yml rename to .github/workflows/simulator_nightly.yml diff --git a/.github/workflows/split-cluster.yml b/.github/workflows/split_cluster.yml similarity index 100% rename from .github/workflows/split-cluster.yml rename to .github/workflows/split_cluster.yml diff --git a/.github/workflows/trigger-builds.yml b/.github/workflows/trigger_builds.yml similarity index 100% rename from .github/workflows/trigger-builds.yml rename to .github/workflows/trigger_builds.yml