From b6c6de878f72d9a6ca5acfde4842ecec88e2d3be Mon Sep 17 00:00:00 2001 From: Andrew Fischer Date: Mon, 1 Apr 2024 09:38:25 -0700 Subject: [PATCH] refactor: rename `*.yml` to `*.yaml` I have been a fan of 3-letter extensions, but apparently the official recommended filename extnsion for YAML files has been `.yaml` since 2006[^1]. This commit renames files with a `.yml` extension to `.yaml` [^1]: https://en.wikipedia.org/wiki/YAML#:~:text=The%20official%20recommended%20filename%20extension,yaml%20since%202006. --- .github/{dependabot.yml => dependabot.yaml} | 0 .github/workflows/{ci.yml => ci.yaml} | 0 .../{deploy-github-pages.yml => deploy-github-pages.yaml} | 0 .github/workflows/{format.yml => format.yaml} | 0 .github/workflows/{release.yml => release.yaml} | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename .github/{dependabot.yml => dependabot.yaml} (100%) rename .github/workflows/{ci.yml => ci.yaml} (100%) rename .github/workflows/{deploy-github-pages.yml => deploy-github-pages.yaml} (100%) rename .github/workflows/{format.yml => format.yaml} (100%) rename .github/workflows/{release.yml => release.yaml} (100%) 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/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/deploy-github-pages.yml b/.github/workflows/deploy-github-pages.yaml similarity index 100% rename from .github/workflows/deploy-github-pages.yml rename to .github/workflows/deploy-github-pages.yaml diff --git a/.github/workflows/format.yml b/.github/workflows/format.yaml similarity index 100% rename from .github/workflows/format.yml rename to .github/workflows/format.yaml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yaml similarity index 100% rename from .github/workflows/release.yml rename to .github/workflows/release.yaml