From 6a738181b418fe8ee7f3868cede0090884e7cd42 Mon Sep 17 00:00:00 2001 From: Paul Rastoin <45004772+prastoin@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:21:00 +0100 Subject: [PATCH] [CI][NITPICK] `.yml` to `yaml` github workflows (#9664) # Introduction Applying the most present `yaml` file extension to all `.github/workflows/` files ## Notes Regarding the `restore-cache` and `save-cache` composite actions github agnostically searches for any `DockerFile` `action.yml` and `action.yaml` within the target folder when invoking composite actions as follows: ```yml - name: Restore storybook build cache if: steps.changed-files.outputs.any_changed == 'true' uses: ./.github/workflows/actions/restore-cache with: key: ${{ env.STORYBOOK_BUILD_CACHE_KEY }} ``` --- .../workflows/actions/restore-cache/{action.yml => action.yaml} | 0 .../workflows/actions/save-cache/{action.yml => action.yaml} | 0 .github/workflows/{ci-e2e.yml => ci-e2e.yaml} | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/actions/restore-cache/{action.yml => action.yaml} (100%) rename .github/workflows/actions/save-cache/{action.yml => action.yaml} (100%) rename .github/workflows/{ci-e2e.yml => ci-e2e.yaml} (99%) diff --git a/.github/workflows/actions/restore-cache/action.yml b/.github/workflows/actions/restore-cache/action.yaml similarity index 100% rename from .github/workflows/actions/restore-cache/action.yml rename to .github/workflows/actions/restore-cache/action.yaml diff --git a/.github/workflows/actions/save-cache/action.yml b/.github/workflows/actions/save-cache/action.yaml similarity index 100% rename from .github/workflows/actions/save-cache/action.yml rename to .github/workflows/actions/save-cache/action.yaml diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yaml similarity index 99% rename from .github/workflows/ci-e2e.yml rename to .github/workflows/ci-e2e.yaml index 371024788..34bd52862 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yaml @@ -62,7 +62,7 @@ jobs: files: | packages/** playwright.config.ts - .github/workflows/ci-e2e.yml + .github/workflows/ci-e2e.yaml - name: Skip if no relevant changes if: steps.changed-files.outputs.any_changed == 'false'