1

ワイルドカードを使用して同様のパターンを持つブランチ保護ルールを照会しようとしています。どんな提案でも大歓迎です。

query {
  repository(owner:"user",name: "repo") {
    branchProtectionRules(first: 10) {
      nodes {
          pattern
            }
        }
    }
  }

O/P:

{
    "data": {
        "repository": {
            "branchProtectionRules": {
                "nodes": [
                    {
                        "pattern": "release"
                    },
                    {
                        "pattern": "release-220"
                    }
                ]
            }
        }
    }
}

release* でパターン フィールドを見つける方法はありますか

4

0 に答える 0