From 69a7b166c9badca3682cf2103a09bd7e1267d812 Mon Sep 17 00:00:00 2001 From: Lau Chaves Date: Mon, 25 Nov 2024 01:23:49 -0600 Subject: [PATCH] Fix error --- .github/workflows/auto-assign.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index f05c9bd..d81e9a6 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -12,7 +12,6 @@ jobs: uses: actions/github-script@v6 with: script: | - const { github, context } = require('@actions/github'); const reviewers = ['danielcdz']; const assignees = [context.actor]; @@ -23,7 +22,7 @@ jobs: pull_number: context.payload.pull_request.number, reviewers, }); - + // Add assignees await github.rest.issues.addAssignees({ owner: context.repo.owner,