Skip to content

Commit

Permalink
test 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Gmin2 committed Jan 14, 2024
1 parent aedb950 commit a691267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/automerge-for-humans-merging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '16'

- name: Install dependencies
run: npm install @octokit/core @octokit/plugin-paginate-rest @octokit/rest node-fetch
Expand All @@ -36,7 +36,7 @@ jobs:
const { Octokit } = require('@octokit/rest');
const { paginateRest } = require('@octokit/plugin-paginate-rest');
const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args));
const fetch = require('node-fetch');
const token = process.env.GITHUB_TOKEN;
const prNumber = process.env.PR_NUMBER;
Expand Down

0 comments on commit a691267

Please sign in to comment.