Skip to content

Commit 2649098

Browse files
authored
Fix "Update API reports" workflow (#7205)
1 parent f1b1c5a commit 2649098

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/update-api-reports.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@master
1515
with:
1616
# checkout HEAD commit instead of merge commit
17-
ref: ${{ github.event.pull_request.head.sha }}
17+
ref: ${{ github.event.pull_request.head.ref }}
1818
token: ${{ github.token }}
1919
- name: Set up Node (14)
2020
uses: actions/setup-node@v2

common/api-review/auth.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ export interface TotpMultiFactorAssertion extends MultiFactorAssertion {
754754
export class TotpMultiFactorGenerator {
755755
static assertionForEnrollment(secret: TotpSecret, oneTimePassword: string): TotpMultiFactorAssertion;
756756
static assertionForSignIn(enrollmentId: string, oneTimePassword: string): TotpMultiFactorAssertion;
757-
static FACTOR_ID: "totp";
757+
static FACTOR_ID: 'totp';
758758
static generateSecret(session: MultiFactorSession): Promise<TotpSecret>;
759759
}
760760

0 commit comments

Comments
 (0)