Skip to content

Commit

Permalink
build: omit actor in push URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Aug 2, 2023
1 parent 3fcbd78 commit 27f5f34
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
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"
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/any-by/lib/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

1 comment on commit 27f5f34

@stdlib-bot
Copy link
Contributor

@stdlib-bot stdlib-bot commented on 27f5f34 Aug 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
utils/async/any-by-right $\color{green}546/546$ $\color{green}63/63$ $\color{green}8/8$ $\color{green}546/546$
utils/async/any-by $\color{green}549/549$ $\color{green}63/63$ $\color{green}8/8$ $\color{red}549/549$

The above coverage report was generated for the changes in this push.

Please sign in to comment.