Skip to content

Commit

Permalink
Update to new workflow badge URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru committed Jan 24, 2024
1 parent 7c54b7d commit 6afb228
Show file tree
Hide file tree
Showing 6 changed files with 297 additions and 289 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/auto-update-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ jobs:
- sudosh
- teleport
- terraform
- terraform-0.14
- terraform-0.15
- terraform-1
- terraform-config-inspect
- terraform-docs
Expand Down
284 changes: 142 additions & 142 deletions README.md

Large diffs are not rendered by default.

284 changes: 142 additions & 142 deletions docs/badges.md

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion tasks/Makefile.package
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,11 @@ info/md:
else \
truncated_version='%-10s'; \
fi; \
printf "[![%s](https://github.com/cloudposse/packages/workflows/%s/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%%3A%s)$${package_arch_incomplete} | $${truncated_version} | %s\n" "$${PACKAGE_NAME}" "$${PACKAGE_NAME}" "$${PACKAGE_NAME}" "$${PACKAGE_VERSION}" "$${PACKAGE_DESCRIPTION}"; \
if [[ "$${AUTO_UPDATE_ENABLED:-true}" == "true" ]] || [[ "$${AUTO_UPDATE_ENABLED:-true}" == "softfail" ]]; then \
printf "[![%s](https://github.com/cloudposse/packages/actions/workflows/%s.yml/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%%3A%s)$${package_arch_incomplete} | $${truncated_version} | %s\n" "$${PACKAGE_NAME}" "$${PACKAGE_NAME}" "$${PACKAGE_NAME}" "$${PACKAGE_VERSION}" "$${PACKAGE_DESCRIPTION}"; \
else \
printf "%s$${package_arch_incomplete} \[frozen\] | $${truncated_version} | %s\n" "$${PACKAGE_NAME}" "$${PACKAGE_VERSION}" "$${PACKAGE_DESCRIPTION}"; \
fi; \
fi

# info/github is used to configure GitHub Actions, particularly build and auto-update
Expand Down
5 changes: 3 additions & 2 deletions vendor/terraform-0.14/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ export MAJOR_VERSION = 0.14
export PACKAGE_PRERELEASE_ENABLED = false
export PACKAGE_NAME = $(MASTER_PACKAGE_NAME)-$(MAJOR_VERSION)

# Package is well past EOL
export AUTO_UPDATE_ENABLED = false
# This version is technically past end-of-life, so we allow updates to fail,
# but we keep checking anyway in case there is a security patch.
export AUTO_UPDATE_ENABLED = softfail

include ../../tasks/Makefile.vendor_includes

Expand Down
5 changes: 3 additions & 2 deletions vendor/terraform-0.15/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ export MAJOR_VERSION = 0.15
export PACKAGE_PRERELEASE_ENABLED = true
export PACKAGE_NAME = $(MASTER_PACKAGE_NAME)-$(MAJOR_VERSION)

# Package is well past EOL
export AUTO_UPDATE_ENABLED = false
# This version is technically past end-of-life, so we allow updates to fail,
# but we keep checking anyway in case there is a security patch.
export AUTO_UPDATE_ENABLED = softfail

include ../../tasks/Makefile.vendor_includes

Expand Down

0 comments on commit 6afb228

Please sign in to comment.