Skip to content

Commit fa9a6e8

Browse files
authored
repo sync
2 parents 3f0b63c + 261dbbb commit fa9a6e8

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
@@ -94,9 +94,9 @@ By default, the response takes the following form. The response parameters `expi
9494
```json
9595
{
9696
"access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a",
97-
"expires_in": "28800",
97+
"expires_in": 28800,
9898
"refresh_token": "r1.c1b4a2e77838347a7e420ce178f2e7c6912e1692",
99-
"refresh_token_expires_in": "15811200",
99+
"refresh_token_expires_in": 15811200,
100100
"scope": "",
101101
"token_type": "bearer"
102102
}

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)