From ce8556588d19236bc56bf31cccc29c5d93fa95ef Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Mon, 11 Mar 2024 10:54:01 +0900 Subject: [PATCH] github: unify YAML file extension to .yml Backported form 2ea28c9d556dda1304292a0b48c553911566ca52 It is not harmful because GitHub allows both of file extensions (.yaml and .yml), but it may be better to unify it for consistency. .yml is used in https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions Signed-off-by: Kentaro Hayashi --- .github/ISSUE_TEMPLATE/{bug_report.yaml => bug_report.yml} | 0 .../ISSUE_TEMPLATE/{feature_request.yaml => feature_request.yml} | 0 .github/workflows/{test.yaml => test.yml} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.yaml => bug_report.yml} (100%) rename .github/ISSUE_TEMPLATE/{feature_request.yaml => feature_request.yml} (100%) rename .github/workflows/{test.yaml => test.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.yaml rename to .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.yaml rename to .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yml similarity index 100% rename from .github/workflows/test.yaml rename to .github/workflows/test.yml