diff --git a/.github/workflows/issues-weekly-creation.yml b/.github/workflows/issues-weekly-creation.yml index a8cd29e..d0bf95c 100644 --- a/.github/workflows/issues-weekly-creation.yml +++ b/.github/workflows/issues-weekly-creation.yml @@ -14,6 +14,7 @@ jobs: uses: actions/github-script@v6 with: script: | + const { github, context } = require('@actions/github'); const now = new Date(); const nextTuesday = new Date(now); nextTuesday.setDate(now.getDate() + ((2 + 7 - now.getDay()) % 7));