Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): fix octokit variable to process.env.GITHUB_TOKEN #521

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/fetch_prs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const owner = 'deckhouse';
const repo = 'virtualization';
const project = ':dvp: DVP';
const defaultLogin = '@anton.nikonov';
const octokit = new Octokit({ auth: process.env.RELEASE_PLEASE_TOKEN });
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN });
const recentDays = 2;
const approvalsRequired = 1

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dev_prs-summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "18" # Use Node.js 18
node-version: "20" # Use Node.js 20

- name: Install dependencies
run: npm install -S .github/scripts
Expand Down
Loading