We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6167a21 commit 7c60c17Copy full SHA for 7c60c17
.github/workflows/ansible-lint.yml
@@ -48,8 +48,8 @@ jobs:
48
if [ -f "$meta_req_file" ] && [ -f "$test_req_file" ]; then
49
coll_req_file="${{ github.workspace }}/req.yml"
50
python -c 'import sys; import yaml
51
- hsh1 = yaml.safe_load(open(sys.argv[0])
52
- hsh2 = yaml.safe_load(open(sys.argv[1])
+ hsh1 = yaml.safe_load(open(sys.argv[0]))
+ hsh2 = yaml.safe_load(open(sys.argv[1]))
53
coll = list(set(hsh1["collections"]).union(hsh2["collections"]))
54
hsh1["collections"] = coll
55
yaml.safe_dump(hsh1, open(sys.argv[2], "w"))' "$meta_req_file" "$test_req_file" "$coll_req_file"
0 commit comments