From fd022965c022f1f02858287325fb01f5ba29b936 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Sat, 9 Jan 2021 09:58:53 +0100 Subject: [PATCH] Add SECURITY.md file (#8292) * Add SECURITY.md file Signed-off-by: Julien Pivotto --- SECURITY.md | 6 ++++++ scripts/sync_repo_files.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..67741f015 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,6 @@ +# Reporting a security issue + +The Prometheus security policy, including how to report vulnerabilities, can be +found here: + +https://prometheus.io/docs/operating/security/ diff --git a/scripts/sync_repo_files.sh b/scripts/sync_repo_files.sh index 560ad812b..0077e58d3 100755 --- a/scripts/sync_repo_files.sh +++ b/scripts/sync_repo_files.sh @@ -20,7 +20,7 @@ if [ -z "${GITHUB_TOKEN}" ]; then fi # List of files that should be synced. -SYNC_FILES="CODE_OF_CONDUCT.md LICENSE Makefile.common" +SYNC_FILES="CODE_OF_CONDUCT.md LICENSE Makefile.common SECURITY.md" # Go to the root of the repo cd "$(git rev-parse --show-cdup)" || exit 1