diff --git a/src/utils/getLastModifiedDate.ts b/src/utils/getLastModifiedDate.ts index 773e962cea..af0598d37e 100644 --- a/src/utils/getLastModifiedDate.ts +++ b/src/utils/getLastModifiedDate.ts @@ -2,8 +2,7 @@ import { LAST_COMMIT_BASE_URL } from '../constants'; export const getLastModifiedDate = async (filePath: string) => { const headers = new Headers({ - // Note: this token expires on Dec 16, 2023 - // check fine-grained tokens https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#about-personal-access-tokens + // About personal access tokens https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#about-personal-access-tokens Authorization: 'Token ' + process.env.GITHUB_TOKEN_READ_ONLY });