From 2225b34b023c5fb5c1b6815bd2d04ca93630ec30 Mon Sep 17 00:00:00 2001 From: Michele Degges Date: Thu, 24 Mar 2022 18:30:52 -0700 Subject: [PATCH] [RelAPI Onboarding] Add release API metadata file (#14679) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 👋 This PR adds a `.release/release-metadata.hcl` file to the repo. This contains static metadata that will be processed and sent as part of the payload in RelAPI POST requests, which will be sent when staging and production releases are triggered. This can be merged now, but will not have any effect until after the RelAPI launch. This will need to be backported to all active release branches, as well. Similar additions are being added across all projects that publish to releases.hashicorp.com. --- .release/release-metadata.hcl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .release/release-metadata.hcl diff --git a/.release/release-metadata.hcl b/.release/release-metadata.hcl new file mode 100644 index 0000000000..19aadfc71a --- /dev/null +++ b/.release/release-metadata.hcl @@ -0,0 +1,6 @@ +url_docker_registry_dockerhub = "https://hub.docker.com/r/hashicorp/vault" +url_docker_registry_ecr = "https://gallery.ecr.aws/hashicorp/vault" +url_license = "https://github.com/hashicorp/vault/blob/main/LICENSE" +url_project_website = "https://www.vaultproject.io/" +url_source_repository = "https://github.com/hashicorp/vault" +url_release_notes = "https://www.vaultproject.io/docs/release-notes"