我有以下的有效載荷從JSON有效載荷
[
{
"name": "ProductCostingBJF_v2.3.0",
"commit": {
},
"protection": {
"enabled": true,
"required_status_checks": {
"enforcement_level": "off",
"contexts": []
}
}
},
{
"name": "master",
"commit": {
},
"protection": {
"enabled": true,
"required_status_checks": {
"enforcement_level": "off",
"contexts": []
}
}
}
]
你可以用JQ語法幫助拉出來,目前
ProductCostingBJF_v2.3.0 true
master true
提取多個字段我得到的第一部分......我可以得到分支名稱與
jq -r .[].name
但我不知道如何獲得啓用值。
[]名,。[]。protection.enabled是這樣的嗎? – Bram