Skip to content

Commit 72a0c06

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents f53df80 + 2e9d21c commit 72a0c06

9 files changed

Lines changed: 41 additions & 34 deletions

File tree

.github/workflows/update-graphql-files.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ env:
99
FREEZE: ${{ secrets.FREEZE }}
1010

1111
on:
12-
schedule:
13-
- cron: '20 16 * * *' # run every day at 16:20 UTC / 8:20 PST
12+
workflow_dispatch:
13+
#schedule:
14+
#- cron: '20 16 * * *' # run every day at 16:20 UTC / 8:20 PST
1415

1516
jobs:
1617
update_graphql_files:
@@ -36,7 +37,7 @@ jobs:
3637
- name: Run updater scripts
3738
env:
3839
# need to use a token from a user with access to github/github for this step
39-
GITHUB_TOKEN: ${{ secrets.ZEKE_PAT_WITH_REPO_AND_WORKFLOW_SCOPE_FOR_REPO_SYNC }}
40+
GITHUB_TOKEN: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
4041
run: |
4142
script/graphql/update-files.js
4243
- name: Create pull request

app.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "docs.github.com",
33
"env": {
44
"NODE_ENV": "production",
5-
"NPM_CONFIG_PRODUCTION": "true"
5+
"NPM_CONFIG_PRODUCTION": "true",
6+
"ENABLED_LANGUAGES": "en, de"
67
},
78
"buildpacks": [
89
{ "url": "https://github.com/DataDog/heroku-buildpack-datadog.git#1.21" },

content/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ To set up a `www` or custom subdomain, such as `www.example.com` or `blog.exampl
4040
{% data reusables.pages.navigate-site-repo %}
4141
{% data reusables.repositories.sidebar-settings %}
4242
{% data reusables.pages.save-custom-domain %}
43-
5. Navigate to your DNS provider and create a `CNAME` record that points your subdomain to the default domain for your site. For example, if you want to use the subdomain `www.example.com` for your user site, create a `CNAME` record that points `www.example.com` to `<user>.github.io`. If you want to use the subdomain `www.anotherexample.com` for your organization site, create a `CNAME` record that points `www.anotherexample.com` to `<organization>.github.io`. The `CNAME` file should always point to `<user>.github.io` or `<organization>.github.io`, excluding the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %}
43+
5. Navigate to your DNS provider and create a `CNAME` record that points your subdomain to the default domain for your site. For example, if you want to use the subdomain `www.example.com` for your user site, create a `CNAME` record that points `www.example.com` to `<user>.github.io`. If you want to use the subdomain `www.anotherexample.com` for your organization site, create a `CNAME` record that points `www.anotherexample.com` to `<organization>.github.io`. The `CNAME` record should always point to `<user>.github.io` or `<organization>.github.io`, excluding the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %}
44+
45+
{% indented_data_reference site.data.reusables.pages.wildcard-dns-warning spaces=3 %}
4446
{% data reusables.command_line.open_the_multi_os_terminal %}
4547
6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your subdomain.
4648
```shell
@@ -71,6 +73,8 @@ To set up an apex domain, such as `example.com`, you must configure a _CNAME_ fi
7173
185.199.110.153
7274
185.199.111.153
7375
```
76+
77+
{% indented_data_reference site.data.reusables.pages.wildcard-dns-warning spaces=3 %}
7478
{% data reusables.command_line.open_the_multi_os_terminal %}
7579
6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _EXAMPLE.COM_ with your apex domain. Confirm that the results match the IP addresses for {% data variables.product.prodname_pages %} above.
7680
```shell

content/github/working-with-github-pages/troubleshooting-custom-domains-and-github-pages.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ Make sure your site does not:
3939
- Use more than one `www` subdomain. For example, both `www.example.com` and `www.anotherexample.com`.
4040
- Use both an apex domain and custom subdomain. For example, both `example.com` and `docs.example.com`.
4141

42-
{% warning %}
43-
44-
**Warning:** We strongly recommend not using wildcard DNS records, such as `*.example.com`. A wildcard DNS record will allow anyone to host a {% data variables.product.prodname_pages %} site at one of your subdomains.
45-
46-
{% endwarning %}
42+
{% data reusables.pages.wildcard-dns-warning %}
4743

4844
For a list of supported custom domains, see "[About custom domains and {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)."
4945

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{% warning %}
2+
3+
**Warning:** We strongly recommend not using wildcard DNS records, such as `*.example.com`. A wildcard DNS record will allow anyone to host a {% data variables.product.prodname_pages %} site at one of your subdomains.
4+
5+
{% endwarning %}

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40968,7 +40968,7 @@
4096840968
}
4096940969
],
4097040970
"summary": "List code scanning alerts for a repository",
40971-
"description": "Lists all open code scanning alerts for the default branch (usually `main` or `master`). For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` read permission to use this endpoint.",
40971+
"description": "Lists all open code scanning alerts for the default branch (usually `main` or `master`). You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` read permission to use this endpoint.",
4097240972
"tags": [
4097340973
"code-scanning"
4097440974
],
@@ -40989,7 +40989,7 @@
4098940989
"categoryLabel": "Code scanning",
4099040990
"notes": [],
4099140991
"bodyParameters": [],
40992-
"descriptionHTML": "<p>Lists all open code scanning alerts for the default branch (usually <code>main</code> or <code>master</code>). For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
40992+
"descriptionHTML": "<p>Lists all open code scanning alerts for the default branch (usually <code>main</code> or <code>master</code>). You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
4099340993
"responses": [
4099440994
{
4099540995
"httpStatusCode": "200",
@@ -41146,7 +41146,7 @@
4114641146
}
4114741147
],
4114841148
"summary": "Update a code scanning alert",
41149-
"description": "Updates the status of a single code scanning alert. For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes.\nGitHub Apps must have the `security_events` write permission to use this endpoint.",
41149+
"description": "Updates the status of a single code scanning alert. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` write permission to use this endpoint.",
4115041150
"operationId": "code-scanning/update-alert",
4115141151
"tags": [
4115241152
"code-scanning"
@@ -41220,7 +41220,7 @@
4122041220
"category": "code-scanning",
4122141221
"categoryLabel": "Code scanning",
4122241222
"notes": [],
41223-
"descriptionHTML": "<p>Updates the status of a single code scanning alert. For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes.\nGitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
41223+
"descriptionHTML": "<p>Updates the status of a single code scanning alert. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
4122441224
"bodyParameters": [
4122541225
{
4122641226
"description": "<p><strong>Required</strong>. Sets the state of the code scanning alert. Can be one of <code>open</code> or <code>dismissed</code>. You must provide <code>dismissed_reason</code> when you set the state to <code>dismissed</code>.</p>",
@@ -41338,7 +41338,7 @@
4133841338
}
4133941339
],
4134041340
"summary": "List recent code scanning analyses for a repository",
41341-
"description": "List the details of recent code scanning analyses for a repository. For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` read permission to use this endpoint.",
41341+
"description": "List the details of recent code scanning analyses for a repository. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` read permission to use this endpoint.",
4134241342
"operationId": "code-scanning/list-recent-analyses",
4134341343
"tags": [
4134441344
"code-scanning"
@@ -41358,7 +41358,7 @@
4135841358
"categoryLabel": "Code scanning",
4135941359
"notes": [],
4136041360
"bodyParameters": [],
41361-
"descriptionHTML": "<p>List the details of recent code scanning analyses for a repository. For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
41361+
"descriptionHTML": "<p>List the details of recent code scanning analyses for a repository. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
4136241362
"responses": [
4136341363
{
4136441364
"httpStatusCode": "200",
@@ -41405,7 +41405,7 @@
4140541405
}
4140641406
],
4140741407
"summary": "Upload a SARIF file",
41408-
"description": "Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository.\nFor private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` write permission to use this endpoint.",
41408+
"description": "Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` write permission to use this endpoint.",
4140941409
"operationId": "code-scanning/upload-sarif",
4141041410
"tags": [
4141141411
"code-scanning"
@@ -41534,7 +41534,7 @@
4153441534
"description": "Response if the sarif field is too large"
4153541535
}
4153641536
],
41537-
"descriptionHTML": "<p>Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository.\nFor private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
41537+
"descriptionHTML": "<p>Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
4153841538
"bodyParameters": [
4153941539
{
4154041540
"description": "<p><strong>Required</strong>. The commit SHA of the code scanning analysis file.</p>",

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38621,7 +38621,7 @@
3862138621
}
3862238622
],
3862338623
"summary": "List code scanning alerts for a repository",
38624-
"description": "Lists all open code scanning alerts for the default branch (usually `main` or `master`). For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` read permission to use this endpoint.",
38624+
"description": "Lists all open code scanning alerts for the default branch (usually `main` or `master`). You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` read permission to use this endpoint.",
3862538625
"tags": [
3862638626
"code-scanning"
3862738627
],
@@ -38642,7 +38642,7 @@
3864238642
"categoryLabel": "Code scanning",
3864338643
"notes": [],
3864438644
"bodyParameters": [],
38645-
"descriptionHTML": "<p>Lists all open code scanning alerts for the default branch (usually <code>main</code> or <code>master</code>). For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
38645+
"descriptionHTML": "<p>Lists all open code scanning alerts for the default branch (usually <code>main</code> or <code>master</code>). You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
3864638646
"responses": [
3864738647
{
3864838648
"httpStatusCode": "200",
@@ -38799,7 +38799,7 @@
3879938799
}
3880038800
],
3880138801
"summary": "Update a code scanning alert",
38802-
"description": "Updates the status of a single code scanning alert. For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes.\nGitHub Apps must have the `security_events` write permission to use this endpoint.",
38802+
"description": "Updates the status of a single code scanning alert. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` write permission to use this endpoint.",
3880338803
"operationId": "code-scanning/update-alert",
3880438804
"tags": [
3880538805
"code-scanning"
@@ -38873,7 +38873,7 @@
3887338873
"category": "code-scanning",
3887438874
"categoryLabel": "Code scanning",
3887538875
"notes": [],
38876-
"descriptionHTML": "<p>Updates the status of a single code scanning alert. For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes.\nGitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
38876+
"descriptionHTML": "<p>Updates the status of a single code scanning alert. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
3887738877
"bodyParameters": [
3887838878
{
3887938879
"description": "<p><strong>Required</strong>. Sets the state of the code scanning alert. Can be one of <code>open</code> or <code>dismissed</code>. You must provide <code>dismissed_reason</code> when you set the state to <code>dismissed</code>.</p>",
@@ -38991,7 +38991,7 @@
3899138991
}
3899238992
],
3899338993
"summary": "List recent code scanning analyses for a repository",
38994-
"description": "List the details of recent code scanning analyses for a repository. For private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` read permission to use this endpoint.",
38994+
"description": "List the details of recent code scanning analyses for a repository. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` read permission to use this endpoint.",
3899538995
"operationId": "code-scanning/list-recent-analyses",
3899638996
"tags": [
3899738997
"code-scanning"
@@ -39011,7 +39011,7 @@
3901139011
"categoryLabel": "Code scanning",
3901239012
"notes": [],
3901339013
"bodyParameters": [],
39014-
"descriptionHTML": "<p>List the details of recent code scanning analyses for a repository. For private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
39014+
"descriptionHTML": "<p>List the details of recent code scanning analyses for a repository. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> read permission to use this endpoint.</p>",
3901539015
"responses": [
3901639016
{
3901739017
"httpStatusCode": "200",
@@ -39058,7 +39058,7 @@
3905839058
}
3905939059
],
3906039060
"summary": "Upload a SARIF file",
39061-
"description": "Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository.\nFor private repos, you must use an access token with the `repo` scope. For public repos, you must use an access token with `public_repo` and `repo:security_events` scopes. GitHub Apps must have the `security_events` write permission to use this endpoint.",
39061+
"description": "Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` write permission to use this endpoint.",
3906239062
"operationId": "code-scanning/upload-sarif",
3906339063
"tags": [
3906439064
"code-scanning"
@@ -39187,7 +39187,7 @@
3918739187
"description": "Response if the sarif field is too large"
3918839188
}
3918939189
],
39190-
"descriptionHTML": "<p>Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository.\nFor private repos, you must use an access token with the <code>repo</code> scope. For public repos, you must use an access token with <code>public_repo</code> and <code>repo:security_events</code> scopes. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
39190+
"descriptionHTML": "<p>Upload a SARIF file containing the results of a code scanning analysis to make the results available in a repository. You must use an access token with the <code>security_events</code> scope to use this endpoint. GitHub Apps must have the <code>security_events</code> write permission to use this endpoint.</p>",
3919139191
"bodyParameters": [
3919239192
{
3919339193
"description": "<p><strong>Required</strong>. The commit SHA of the code scanning analysis file.</p>",

0 commit comments

Comments
 (0)