Skip to content

Commit 0409fca

Browse files
authored
Merge pull request #12113 from github/repo-sync
repo sync
2 parents 38c9d63 + 6e7dabf commit 0409fca

14 files changed

Lines changed: 2538 additions & 29 deletions

File tree

content/actions/learn-github-actions/workflow-syntax-for-github-actions.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ For more information, see "[About comparing branches in pull requests](/pull-req
187187
{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}
188188
## `on.workflow_call.inputs`
189189

190-
When using the `workflow_call` keyword, you can optionally specify inputs that are passed to the called workflow from the caller workflow. Inputs for reusable workflows are specified with the same format as action inputs. For more information about inputs, see "[Metadata syntax for GitHub Actions](/actions/creating-actions/metadata-syntax-for-github-actions#inputs)." For more information about the `workflow_call` keyword, see "[Events that trigger workflows](/actions/learn-github-actions/events-that-trigger-workflows#workflow-reuse-events)."
190+
When using the `workflow_call` keyword, you can optionally specify inputs that are passed to the called workflow from the caller workflow. For more information about the `workflow_call` keyword, see "[Events that trigger workflows](/actions/learn-github-actions/events-that-trigger-workflows#workflow-reuse-events)."
191191

192192
In addition to the standard input parameters that are available, `on.workflow_call.inputs` requires a `type` parameter. For more information, see [`on.workflow_call.inputs.<input_id>.type`](#onworkflow_callinputsinput_idtype).
193193

@@ -268,7 +268,7 @@ A boolean specifying whether the secret must be supplied.
268268

269269
## `on.workflow_dispatch.inputs`
270270

271-
When using the `workflow_dispatch` event, you can optionally specify inputs that are passed to the workflow. Workflow dispatch inputs are specified with the same format as action inputs. For more information about the format see "[Metadata syntax for GitHub Actions](/actions/creating-actions/metadata-syntax-for-github-actions#inputs)."
271+
When using the `workflow_dispatch` event, you can optionally specify inputs that are passed to the workflow.
272272

273273
```yaml
274274
on:
@@ -277,10 +277,20 @@ on:
277277
logLevel:
278278
description: 'Log level'
279279
required: true
280-
default: 'warning'
280+
default: 'warning' {% ifversion ghec or ghes > 3.3 or ghae-issue-5511 %}
281+
type: choice
282+
options:
283+
- info
284+
- warning
285+
- debug {% endif %}
281286
tags:
282287
description: 'Test scenario tags'
283-
required: false
288+
required: false {% ifversion ghec or ghes > 3.3 or ghae-issue-5511 %}
289+
type: boolean
290+
environment:
291+
description: 'Environment to run tests against'
292+
type: environment
293+
required: true {% endif %}
284294
```
285295

286296
The triggered workflow receives the inputs in the `github.event.inputs` context. For more information, see "[Contexts](/actions/learn-github-actions/contexts#github-context)."

content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ topics:
1616
{% note %}
1717

1818
**Notes:**
19-
- To upgrade from {% data variables.product.prodname_enterprise %} 11.10.348 through {% data variables.product.current-340-version %}, you must first migrate to {% data variables.product.prodname_enterprise %} 2.1.23. For more information, see "[Migrating from {% data variables.product.prodname_enterprise %} 11.10.x to 2.1.23](/enterprise/{{ currentVersion }}/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23)."
2019
- Upgrade packages are available at [enterprise.github.com](https://enterprise.github.com/releases) for supported versions. Verify the availability of the upgrade packages you will need to complete the upgrade. If a package is not available, contact {% data variables.contact.contact_ent_support %} for assistance.
2120
- If you're using {% data variables.product.prodname_ghe_server %} Clustering, see "[Upgrading a cluster](/enterprise/{{ currentVersion }}/admin/guides/clustering/upgrading-a-cluster/)" in the {% data variables.product.prodname_ghe_server %} Clustering Guide for specific instructions unique to clustering.
2221
- The release notes for {% data variables.product.prodname_ghe_server %} provide a comprehensive list of new features for every version of {% data variables.product.prodname_ghe_server %}. For more information, see the [releases page](https://enterprise.github.com/releases).

lib/rest/static/decorated/api.github.com.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/decorated/ghes-3.0.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/decorated/ghes-3.1.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/decorated/ghes-3.2.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/decorated/ghes-3.3.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/decorated/github.ae.json

Lines changed: 286 additions & 4 deletions
Large diffs are not rendered by default.

lib/rest/static/dereferenced/api.github.com.deref.json

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150444,6 +150444,25 @@
150444150444
"type": "string"
150445150445
}
150446150446
},
150447+
"checks": {
150448+
"type": "array",
150449+
"items": {
150450+
"type": "object",
150451+
"properties": {
150452+
"context": {
150453+
"type": "string"
150454+
},
150455+
"app_id": {
150456+
"type": "string",
150457+
"nullable": true
150458+
}
150459+
},
150460+
"required": [
150461+
"context",
150462+
"app_id"
150463+
]
150464+
}
150465+
},
150447150466
"contexts_url": {
150448150467
"type": "string"
150449150468
},
@@ -151844,6 +151863,25 @@
151844151863
"type": "string"
151845151864
}
151846151865
},
151866+
"checks": {
151867+
"type": "array",
151868+
"items": {
151869+
"type": "object",
151870+
"properties": {
151871+
"context": {
151872+
"type": "string"
151873+
},
151874+
"app_id": {
151875+
"type": "string",
151876+
"nullable": true
151877+
}
151878+
},
151879+
"required": [
151880+
"context",
151881+
"app_id"
151882+
]
151883+
}
151884+
},
151847151885
"contexts_url": {
151848151886
"type": "string"
151849151887
},
@@ -152735,6 +152773,25 @@
152735152773
"type": "string"
152736152774
}
152737152775
},
152776+
"checks": {
152777+
"type": "array",
152778+
"items": {
152779+
"type": "object",
152780+
"properties": {
152781+
"context": {
152782+
"type": "string"
152783+
},
152784+
"app_id": {
152785+
"type": "string",
152786+
"nullable": true
152787+
}
152788+
},
152789+
"required": [
152790+
"context",
152791+
"app_id"
152792+
]
152793+
}
152794+
},
152738152795
"contexts_url": {
152739152796
"type": "string"
152740152797
},
@@ -153706,6 +153763,23 @@
153706153763
"items": {
153707153764
"type": "string"
153708153765
}
153766+
},
153767+
"checks": {
153768+
"type": "array",
153769+
"description": "The list of status checks to require in order to merge into this branch.",
153770+
"items": {
153771+
"type": "object",
153772+
"properties": {
153773+
"context": {
153774+
"type": "string",
153775+
"description": "The name of the required check"
153776+
},
153777+
"app_id": {
153778+
"type": "string",
153779+
"description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source."
153780+
}
153781+
}
153782+
}
153709153783
}
153710153784
},
153711153785
"required": [
@@ -153891,6 +153965,22 @@
153891153965
"type": "string"
153892153966
}
153893153967
},
153968+
"checks": {
153969+
"type": "array",
153970+
"items": {
153971+
"type": "object",
153972+
"properties": {
153973+
"context": {
153974+
"type": "string",
153975+
"example": "continuous-integration/travis-ci"
153976+
},
153977+
"app_id": {
153978+
"type": "string",
153979+
"nullable": true
153980+
}
153981+
}
153982+
}
153983+
},
153894153984
"contexts_url": {
153895153985
"type": "string",
153896153986
"format": "uri",
@@ -156484,6 +156574,22 @@
156484156574
"type": "string"
156485156575
}
156486156576
},
156577+
"checks": {
156578+
"type": "array",
156579+
"items": {
156580+
"type": "object",
156581+
"properties": {
156582+
"context": {
156583+
"type": "string",
156584+
"example": "continuous-integration/travis-ci"
156585+
},
156586+
"app_id": {
156587+
"type": "string",
156588+
"nullable": true
156589+
}
156590+
}
156591+
}
156592+
},
156487156593
"contexts_url": {
156488156594
"type": "string",
156489156595
"format": "uri",
@@ -156642,6 +156748,22 @@
156642156748
"type": "string"
156643156749
}
156644156750
},
156751+
"checks": {
156752+
"type": "array",
156753+
"items": {
156754+
"type": "object",
156755+
"properties": {
156756+
"context": {
156757+
"type": "string",
156758+
"example": "continuous-integration/travis-ci"
156759+
},
156760+
"app_id": {
156761+
"type": "string",
156762+
"nullable": true
156763+
}
156764+
}
156765+
}
156766+
},
156645156767
"contexts_url": {
156646156768
"type": "string",
156647156769
"format": "uri",
@@ -162894,6 +163016,25 @@
162894163016
"type": "string"
162895163017
}
162896163018
},
163019+
"checks": {
163020+
"type": "array",
163021+
"items": {
163022+
"type": "object",
163023+
"properties": {
163024+
"context": {
163025+
"type": "string"
163026+
},
163027+
"app_id": {
163028+
"type": "string",
163029+
"nullable": true
163030+
}
163031+
},
163032+
"required": [
163033+
"context",
163034+
"app_id"
163035+
]
163036+
}
163037+
},
162897163038
"contexts_url": {
162898163039
"type": "string"
162899163040
},

0 commit comments

Comments
 (0)