Skip to content

Commit

Permalink
Change token name
Browse files Browse the repository at this point in the history
  • Loading branch information
jonulak committed Jan 8, 2025
1 parent 882da96 commit 65cf06a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
branches: [main, master]
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
timeout-minutes: 60
Expand Down
2 changes: 1 addition & 1 deletion src/lib/github.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { VWCContributor, GithubRepo, GithubContributor, GithubUser } from "@utils/types";
import axios from "axios";

const token = process.env.GITHUB_ACCESS_TOKEN || "";
const token = process.env.GITHUB_TOKEN || "";
const git_api = axios.create({
baseURL: "https://api.github.com",
headers: {
Expand Down

0 comments on commit 65cf06a

Please sign in to comment.