From 33bfee6a65919f531f9f31f53b2d40799d4025d3 Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Wed, 5 Jun 2024 12:15:04 -0400 Subject: [PATCH] Rename makefile.yml to make-based-ci.yml to avoid precommit/Makefile collision I noted in CI run https://github.com/target/make-python-devex/actions/runs/9387484385/job/25850507307 that the Makefile pre-commit check was picking up makefile.yml as a Makefile. This rename avoids that. ``` Makefile linter/analyzer.................................................Failed - hook id: checkmake - exit code: 6 RULE DESCRIPTION FILE NAME LINE NUMBER minphony Missing required phony target .github/workflows/makefile.yml 0 "all" minphony Missing required phony target .github/workflows/makefile.yml 0 "clean" minphony Missing required phony target .github/workflows/makefile.yml 0 "test" phonydeclared Target "name" should be .github/workflows/makefile.yml 1 declared PHONY. phonydeclared Target "on" should be declared .github/workflows/makefile.yml 3 PHONY. phonydeclared Target "jobs" should be .github/workflows/makefile.yml 9 declared PHONY. ``` --- .github/workflows/{makefile.yml => make-based-ci.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{makefile.yml => make-based-ci.yml} (100%) diff --git a/.github/workflows/makefile.yml b/.github/workflows/make-based-ci.yml similarity index 100% rename from .github/workflows/makefile.yml rename to .github/workflows/make-based-ci.yml