Skip to content

Commit 7eec1cf

Browse files
committed
Fix some things #11
1 parent a5046af commit 7eec1cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/ci_connection/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ runs:
4646
labels=$(echo "$labels_json" | $python_bin -c "import sys, json; labels=[label['name'] for label in json.load(sys.stdin)]; print(json.dumps(labels))")
4747
echo 'check out fallback labels'
4848
echo ${FALLBACK_LABELS}
49-
fallback_labels=$(echo ${FALLBACK_LABELS} | $python_bin -c "import sys, json; labels=[label['name'] for label in json.load(sys.stdin)]; print(json.dumps(labels))")
49+
fallback_labels=$(echo $"FALLBACK_LABELS" | $python_bin -c "import sys, json; labels=[label['name'] for label in json.load(sys.stdin)]; print(json.dumps(labels))")
5050
# Set the labels as an output
5151
echo "labels=$labels_json" >> $GITHUB_OUTPUT
5252
echo "labels_fallback=$labels_json" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)