Skip to content

Commit fecda83

Browse files
authored
repo sync
2 parents 8d757ee + 60bd45b commit fecda83

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

content/developers/apps/authenticating-with-github-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ private_key = OpenSSL::PKey::RSA.new(private_pem)
7777
7878
# Generate the JWT
7979
payload = {
80-
# issued at time
81-
iat: Time.now.to_i,
80+
# issued at time, 60 seconds in the past to allow for clock drift
81+
iat: Time.now.to_i - 60,
8282
# JWT expiration time (10 minute maximum)
8383
exp: Time.now.to_i + (10 * 60),
8484
# {% data variables.product.prodname_github_app %}'s identifier

content/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ When you designate a user as a {% data variables.product.prodname_github_app %}
131131

132132
### Outside collaborators
133133

134-
To keep your organization data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %}
134+
To keep your organization's data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %}
135135

136136
### Further reading
137137

content/rest/reference/activity.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ $ -H 'If-None-Match: "a18c3bded88eb5dbb5c849a489412bf3"'
3333
> X-Poll-Interval: 60
3434
```
3535

36-
Events support pagination, however the `per_page` option is unsupported. The fixed page size is 30 items. Fetching up to ten pages is supported, for a total of 300 events. For information, see "[Traversing with pagination](/rest/guides/traversing-with-pagination)."
37-
3836
Only events created within the past 90 days will be included in timelines. Events older than 90 days will not be included (even if the total number of events in the timeline is less than 300).
3937

4038
{% for operation in currentRestOperations %}

0 commit comments

Comments
 (0)