From aeefa1dde886faa05b6f1934b875b825d967972e Mon Sep 17 00:00:00 2001 From: Christina Holland Date: Thu, 6 Apr 2023 12:45:26 -0700 Subject: [PATCH 1/3] try ref instead of sha --- .github/workflows/update-api-reports.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-api-reports.yml b/.github/workflows/update-api-reports.yml index f566337600d..39a8ee23c48 100644 --- a/.github/workflows/update-api-reports.yml +++ b/.github/workflows/update-api-reports.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@master with: # checkout HEAD commit instead of merge commit - ref: ${{ github.event.pull_request.head.sha }} + ref: ${{ github.event.pull_request.head.ref }} token: ${{ github.token }} - name: Set up Node (14) uses: actions/setup-node@v2 From e73c9f61bcd1f0d2986606ccc005e13da640e616 Mon Sep 17 00:00:00 2001 From: hsubox76 Date: Thu, 6 Apr 2023 20:04:36 +0000 Subject: [PATCH 2/3] Update API reports --- common/api-review/auth.api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/api-review/auth.api.md b/common/api-review/auth.api.md index 9d7d1eae576..df634e12423 100644 --- a/common/api-review/auth.api.md +++ b/common/api-review/auth.api.md @@ -754,7 +754,7 @@ export interface TotpMultiFactorAssertion extends MultiFactorAssertion { export class TotpMultiFactorGenerator { static assertionForEnrollment(secret: TotpSecret, oneTimePassword: string): TotpMultiFactorAssertion; static assertionForSignIn(enrollmentId: string, oneTimePassword: string): TotpMultiFactorAssertion; - static FACTOR_ID: "totp"; + static FACTOR_ID: 'totp'; static generateSecret(session: MultiFactorSession): Promise; } From 2c1b902affe3015851478f533cb965cda5052bb9 Mon Sep 17 00:00:00 2001 From: Christina Holland Date: Fri, 7 Apr 2023 10:46:47 -0700 Subject: [PATCH 3/3] Trigger CI