Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: octokit/plugin-rest-endpoint-methods.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.14.0
Choose a base ref
...
head repository: octokit/plugin-rest-endpoint-methods.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.14.1
Choose a head ref
  • 2 commits
  • 10 files changed
  • 2 contributors

Commits on Jun 17, 2022

  1. Create SECURITY.md

    nickfloyd authored Jun 17, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ec64963 View commit details

Commits on Jun 20, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6867fec View commit details
12 changes: 12 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Security Policy

Thanks for helping make GitHub Open Source Software safe for everyone.

GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as [Octokit](https://github.com/octokit).

Even though [open source repositories are outside of the scope of our bug bounty program](https://bounty.github.com/index.html#scope) and therefore not eligible for bounty rewards, we want to make sure that your finding gets passed along to the maintainers of this project for remediation.


## Reporting a Vulnerability

Since this source is part of [Octokit](https://github.com/octokit) (a GitHub organization) we ask that you follow the guidelines [here](https://github.com/github/.github/blob/master/SECURITY.md#reporting-security-issues) to report anything that you might've found.
2 changes: 1 addition & 1 deletion docs/activity/deleteThreadSubscription.md
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ octokit.rest.activity.deleteThreadSubscription({
<tbody>
<tr><td>thread_id</td><td>yes</td><td>

The unique identifier of the thread.
The unique identifier of the pull request thread.

</td></tr>
</tbody>
2 changes: 1 addition & 1 deletion docs/activity/getThread.md
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ octokit.rest.activity.getThread({
<tbody>
<tr><td>thread_id</td><td>yes</td><td>

The unique identifier of the thread.
The unique identifier of the pull request thread.

</td></tr>
</tbody>
2 changes: 1 addition & 1 deletion docs/activity/getThreadSubscriptionForAuthenticatedUser.md
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ octokit.rest.activity.getThreadSubscriptionForAuthenticatedUser({
<tbody>
<tr><td>thread_id</td><td>yes</td><td>

The unique identifier of the thread.
The unique identifier of the pull request thread.

</td></tr>
</tbody>
2 changes: 1 addition & 1 deletion docs/activity/markNotificationsAsRead.md
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ octokit.rest.activity.markNotificationsAsRead();
<tbody>
<tr><td>last_read_at</td><td>no</td><td>

Describes the last point that notifications were checked.
Describes the last point that notifications were checked. Anything updated since this time will not be marked as read. If you omit this parameter, all notifications are marked as read. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Default: The current timestamp.

</td></tr>
<tr><td>read</td><td>no</td><td>
2 changes: 1 addition & 1 deletion docs/activity/markThreadAsRead.md
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ octokit.rest.activity.markThreadAsRead({
<tbody>
<tr><td>thread_id</td><td>yes</td><td>

The unique identifier of the thread.
The unique identifier of the pull request thread.

</td></tr>
</tbody>
2 changes: 1 addition & 1 deletion docs/activity/setThreadSubscription.md
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ octokit.rest.activity.setThreadSubscription({
<tbody>
<tr><td>thread_id</td><td>yes</td><td>

The unique identifier of the thread.
The unique identifier of the pull request thread.

</td></tr>
<tr><td>ignored</td><td>no</td><td>
2 changes: 1 addition & 1 deletion docs/repos/checkVulnerabilityAlerts.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ type: API method

# Check if vulnerability alerts are enabled for a repository

Shows whether dependency alerts are enabled or disabled for a repository. The authenticated user must have admin access to the repository. For more information, see "[About security alerts for vulnerable dependencies](https://docs.github.com/en/articles/about-security-alerts-for-vulnerable-dependencies)".
Shows whether dependency alerts are enabled or disabled for a repository. The authenticated user must have admin read access to the repository. For more information, see "[About security alerts for vulnerable dependencies](https://docs.github.com/en/articles/about-security-alerts-for-vulnerable-dependencies)".

```js
octokit.rest.repos.checkVulnerabilityAlerts({
Loading