From 3fcbd783b73ff9c3e88067e639721d7aa0f8762d Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 2 Aug 2023 17:05:59 -0400 Subject: [PATCH] build: set environment variable --- .github/workflows/run_tests_coverage.yml | 2 ++ lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests_coverage.yml b/.github/workflows/run_tests_coverage.yml index 5e54c4df10f..8fc5ac60c83 100644 --- a/.github/workflows/run_tests_coverage.yml +++ b/.github/workflows/run_tests_coverage.yml @@ -221,6 +221,8 @@ # Commit and push changes: - name: 'Commit and push changes' + env: + GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} run: | cd ./www-test-code-coverage git add . diff --git a/lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js b/lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js index b82f0821535..31ee3321616 100644 --- a/lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js +++ b/lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js @@ -33,7 +33,6 @@ var factory = require( './factory.js' ); * - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling. * - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`). * -* * @param {Collection} collection - input collection * @param {Options} [options] - function options * @param {*} [options.thisArg] - execution context