-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Organization's .github README.md.gotmpl
#368
Conversation
README.md.gotmpl
.dockerignore
Outdated
@@ -1 +1,2 @@ | |||
.git/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Nuru these commands rely on
git remote get-url
which doesn't work with out .git
, which means it won't work in geodesic
export README_TEMPLATE_FILE ?= $(BUILD_HARNESS_PATH)/templates/README.md.gotmpl | ||
export README_TEMPLATE_YAML := $(if $(findstring http,$(README_YAML)),$(README_YAML),$(BUILD_HARNESS_PATH)/templates/$(README_YAML)) | ||
export README_INCLUDES ?= $(file://$(shell pwd)/?type=text/plain) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Nuru this is needed by the README.md.gotmpl
which uses it as the base for including other files (e.g. from docs/
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this syntax, README_INCLUDES
is always empty. Probably meant for it to be automatically including $PWD
but since it never worked, I would rather just remove it from the template.
- added in Dynamic datasources support #100
what
readme/build
to depend on templatewhy