fix: remove variable interpolation

This commit is contained in:
bo0tzz 2025-07-18 15:23:16 +02:00
parent 17964cdba0
commit d024252afd
No known key found for this signature in database

View File

@ -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