From d024252afd0e962d644e7db5c5f63f2b9534127d Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Fri, 18 Jul 2025 15:23:16 +0200 Subject: [PATCH] fix: remove variable interpolation --- .github/actions/pre-job/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/pre-job/action.yml b/.github/actions/pre-job/action.yml index 78b7fe9f07..0202a37260 100644 --- a/.github/actions/pre-job/action.yml +++ b/.github/actions/pre-job/action.yml @@ -37,13 +37,15 @@ runs: - name: Convert filters to JSON id: convert-filters shell: python + env: + FILTERS: ${{ inputs.filters }} run: | import json import os import yaml # Get the filters input - filters_yaml = """${{ inputs.filters }}""" + filters_yaml = os.environ['FILTERS'] try: # Parse YAML properly using the yaml library