From 9bd325867d26d2b086eae9730a955709a9ffab14 Mon Sep 17 00:00:00 2001 From: cat-bro Date: Mon, 20 Mar 2023 18:43:03 +1100 Subject: [PATCH] add fake password --- .github/workflows/check_tpv_config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check_tpv_config.yml b/.github/workflows/check_tpv_config.yml index 69a82f352..6f3fe1538 100644 --- a/.github/workflows/check_tpv_config.yml +++ b/.github/workflows/check_tpv_config.yml @@ -43,6 +43,9 @@ jobs: import subprocess import os + with open('.vault_pass.txt') as password_file: + password_file.write('FalsePassword') + def template_file(fname): output_fname = fname.replace('.j2', '') playbook = '.github/workflows/template_playbook.yml'