The "Push README to Docker Hub" workflow (container_description.yml) has been failing on every run since at least November 2024, with the following error:
level=debug msg="namespace: prom"
level=debug msg="repo: "
level=error msg="Invalid [IMAGE argument] - bad characters or empty value"
Apparently this is because of a missing name, in that the workflow calls make docker-repo-name, but this target doesn't exist in the Makefile. The Makefile.common has common-docker-repo-name, but:
- There's no
docker-repo-name alias
DOCKER_IMAGE_NAME is never defined for this repository
The only Dockerfile in this repo is for building local examples, so I wonder whether we can keep on ignoring this failure or remove this flow or disable it.
The "Push README to Docker Hub" workflow (
container_description.yml) has been failing on every run since at least November 2024, with the following error:level=debug msg="namespace: prom"
level=debug msg="repo: "
level=error msg="Invalid [IMAGE argument] - bad characters or empty value"
Apparently this is because of a missing name, in that the workflow calls
make docker-repo-name, but this target doesn't exist in the Makefile. TheMakefile.commonhascommon-docker-repo-name, but:docker-repo-namealiasDOCKER_IMAGE_NAMEis never defined for this repositoryThe only Dockerfile in this repo is for building local examples, so I wonder whether we can keep on ignoring this failure or remove this flow or disable it.