Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
904a4e5
Document GitHub serverside limit on URL length
gukoff Mar 15, 2021
e8cbb6c
Correct 2**13 to 2**13 - 1
gukoff Mar 15, 2021
fdbbe51
Wikis aren't crawled. Suggest GH Pages alternative
nelsonjchen Apr 4, 2021
b60122a
Mention that hotpatching RCs is unsupported (#18904)
mattpollard Apr 22, 2021
2b5de5b
Branch was updated using the 'autoupdate branch' Actions workflow.
Octomerger Apr 22, 2021
15e6d75
Merge pull request #18926 from github/repo-sync
Octomerger Apr 22, 2021
27d9850
Hack some versioning for product callout (#18884)
mattpollard Apr 22, 2021
900d6ec
Merge pull request #5626 from github/repo-sync
Octomerger Apr 22, 2021
0e8cc97
Merge branch 'main' into repo-sync
Octomerger Apr 22, 2021
633ef5b
Merge branch 'main' into repo-sync
Octomerger Apr 22, 2021
039d692
Merge pull request #18933 from github/repo-sync
Octomerger Apr 22, 2021
d5ba691
Merge pull request #5627 from github/repo-sync
Octomerger Apr 22, 2021
c6347b7
actions-scheduled-workflow-example: fix cron spec (#5572)
philpennock Apr 22, 2021
51144be
Merge branch 'main' into repo-sync
Octomerger Apr 22, 2021
1361bb3
Merge pull request #18936 from github/repo-sync
Octomerger Apr 22, 2021
3383ea7
Add new step to migrate internal repos for 3.0+ (#18927)
bwestover Apr 22, 2021
c0b5521
Merge pull request #5631 from github/repo-sync
Octomerger Apr 22, 2021
f7da6e0
Update content/communities/documenting-your-project-with-wikis/about-…
janiceilene Apr 22, 2021
d7c4dd2
Merge branch 'main' into non-crawl-wiki-pages
janiceilene Apr 22, 2021
b1da73c
Merge pull request #5054 from nelsonjchen/non-crawl-wiki-pages
janiceilene Apr 22, 2021
76a04a6
Update content/github/managing-your-work-on-github/about-automation-f…
lee-dohm Apr 22, 2021
49899f8
Merge branch 'main' into patch-1
lee-dohm Apr 22, 2021
13a49b7
Merge pull request #18939 from github/repo-sync
Octomerger Apr 22, 2021
d629ca0
Remove unused custom styling (#18912)
heiskr Apr 22, 2021
7087d25
Add rate limit note; suggest caching/etags (#5614)
jamisonhyatt Apr 22, 2021
a2e5a91
Merge branch 'main' into patch-1
janiceilene Apr 22, 2021
3be3528
Update PULL_REQUEST_TEMPLATE.md (#18708)
chiedo Apr 22, 2021
9d6cf34
Merge pull request #4537 from gukoff/patch-1
janiceilene Apr 22, 2021
72e04ec
Merge branch 'main' into repo-sync
Octomerger Apr 22, 2021
cab239f
Merge pull request #5634 from github/repo-sync
Octomerger Apr 22, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add rate limit note; suggest caching/etags (github#5614)
* Add rate limit note; suggest caching/etags

* Update content/developers/overview/secret-scanning.md
  • Loading branch information
jamisonhyatt authored Apr 22, 2021
commit 7087d253b1637ea81f96e0a70c6b528b45bc4111
7 changes: 6 additions & 1 deletion content/developers/overview/secret-scanning.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ We strongly recommend you implement signature validation in your secret alert se

You can retrieve the {% data variables.product.prodname_dotcom %} secret scanning public key from https://api.github.com/meta/public_keys/secret_scanning and validate the message using the `ECDSA-NIST-P256V1-SHA256` algorithm.

{% note %}

**Note**: When you send a request to the public key endpoint above, you may hit rate limits. To avoid hitting rate limits, you can use a personal access token as suggested below, or use a conditional request. For more information, see "[Getting started with the REST API](/rest/guides/getting-started-with-the-rest-api#conditional-requests)."

{% endnote %}

Assuming you receive the following message, the code snippets below demonstrate how you could perform signature validation.
The code also assumes you've set an environment variable called `GITHUB_PRODUCTION_TOKEN` with a generated PAT (https://github.com/settings/tokens). The token does not need any permissions set.

Expand Down Expand Up @@ -358,4 +364,3 @@ A few important points:
**Note:** Our request timeout is set to be higher (that is, 30 seconds) for partners who provide data about false positives. If you require a timeout higher than 30 seconds, email us at <a href="mailto:[email protected]">[email protected]</a>.

{% endnote %}