Skip to content

Commit 6cffe94

Browse files
author
Martin Lopes
authored
Merge branch 'main' into patch-1
2 parents cc0676b + 261dbbb commit 6cffe94

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/developers/apps/identifying-and-authorizing-users-for-github-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ By default, the response takes the following form. The response parameters `expi
9595
```json
9696
{
9797
"access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a",
98-
"expires_in": "28800",
98+
"expires_in": 28800,
9999
"refresh_token": "r1.c1b4a2e77838347a7e420ce178f2e7c6912e1692",
100-
"refresh_token_expires_in": "15811200",
100+
"refresh_token_expires_in": 15811200,
101101
"scope": "",
102102
"token_type": "bearer"
103103
}

data/reusables/github-actions/using-context-or-environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: CI
1111
on: push
1212
jobs:
1313
prod-check:
14-
if: github.ref == 'refs/heads/main'
14+
if: ${{ github.ref == 'refs/heads/main' }}
1515
runs-on: ubuntu-latest
1616
steps:
1717
- run: echo "Deploying to production server on branch $GITHUB_REF"

0 commit comments

Comments
 (0)