Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_ci_job_token_scope.query.graphql « queries « graphql « token_access « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4f559c3701756fcab8ffbe72efd899a575959de (plain)
1
2
3
4
5
6
7
query getCIJobTokenScope($fullPath: ID!) {
  project(fullPath: $fullPath) {
    ciCdSettings {
      jobTokenScopeEnabled
    }
  }
}