From e17b1ebeddb2f3af9f78c8f4920a1121f8db3fa9 Mon Sep 17 00:00:00 2001 From: Somar Romero Date: Tue, 30 Jul 2024 21:33:01 +0000 Subject: [PATCH] chore: Update GITHUB_TOKEN in node.js.yml The GITHUB_TOKEN in the node.js.yml file has been updated to use the secrets.DIRECTUS_REPO_TOKEN instead of secrets.GITHUB_TOKEN. This change ensures that the correct token is used for authentication in GitHub Actions. --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4059e9f..9f65236 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -46,4 +46,4 @@ jobs: git commit -m "Add built files from GitHub Actions [skip ci]" git push env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.DIRECTUS_REPO_TOKEN }} \ No newline at end of file