From 779eb65e79028a20106ce48fa4012a271fd57984 Mon Sep 17 00:00:00 2001 From: Daniil Suvorov Date: Mon, 16 Dec 2024 18:19:24 +0300 Subject: [PATCH] ci(monday): add nvmrc-up-pr - https://github.com/VKCOM/gh-actions/pull/519 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Добавляем экшон для создания PR-а обновления версии Node.js в понедельник --- .github/workflows/monday.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/monday.yml b/.github/workflows/monday.yml index 4670393c..b8525cb5 100644 --- a/.github/workflows/monday.yml +++ b/.github/workflows/monday.yml @@ -4,8 +4,8 @@ on: - cron: '0 5 * * 1' # Runs at 05:00, only on Monday jobs: - corepack-up: - name: Corepack up + tools-update: + name: Tools update runs-on: ubuntu-latest permissions: contents: write @@ -20,3 +20,7 @@ jobs: - uses: VKCOM/gh-actions/shared/node/corepack-up-pr@main with: token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} + + - uses: VKCOM/gh-actions/shared/node/nvmrc-up-pr@main + with: + token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }}