diff --git a/.github/workflows/run_tests_coverage.yml b/.github/workflows/run_tests_coverage.yml index 8fc5ac60c83..174a52f67f6 100644 --- a/.github/workflows/run_tests_coverage.yml +++ b/.github/workflows/run_tests_coverage.yml @@ -222,12 +222,12 @@ # Commit and push changes: - name: 'Commit and push changes' env: - GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} run: | cd ./www-test-code-coverage git add . git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" git commit -m "Update artifacts" - git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/stdlib-js/www-test-code-coverage" + git push "https://$REPO_GITHUB_TOKEN@github.com/stdlib-js/www-test-code-coverage" diff --git a/lib/node_modules/@stdlib/utils/async/any-by-right/lib/factory.js b/lib/node_modules/@stdlib/utils/async/any-by-right/lib/factory.js index aaf15083129..3df46943db5 100644 --- a/lib/node_modules/@stdlib/utils/async/any-by-right/lib/factory.js +++ b/lib/node_modules/@stdlib/utils/async/any-by-right/lib/factory.js @@ -38,7 +38,6 @@ var limit = require( './limit.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 {Options} [options] - function options * @param {*} [options.thisArg] - execution context * @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time diff --git a/lib/node_modules/@stdlib/utils/async/any-by/lib/factory.js b/lib/node_modules/@stdlib/utils/async/any-by/lib/factory.js index a0385040116..192ba1923c9 100644 --- a/lib/node_modules/@stdlib/utils/async/any-by/lib/factory.js +++ b/lib/node_modules/@stdlib/utils/async/any-by/lib/factory.js @@ -38,7 +38,6 @@ var limit = require( './limit.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 {Options} [options] - function options * @param {*} [options.thisArg] - execution context * @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time