-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enable setting
concurrency
(#16)
- Loading branch information
Showing
11 changed files
with
166 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ A Github Action that can sync secrets from one repository to many others. This a | |
**Required** New line deliminated regex expressions to select repositories. Repositires are limited to those in whcich the token user is an owner or collaborator. Set `repositories_list_regex` to `False` to use a hardcoded list of repositories. | ||
|
||
### `repositories_list_regex` | ||
|
||
If this value is `true` (default), the action will find all | ||
repositories available to the token user and filter based upon the regex | ||
provided. If it is false, it is expected that `repositories` will be an a | ||
|
@@ -32,6 +33,10 @@ new line deliminated list in the form of org/name. | |
|
||
The number of retries to attempt when making Github calls when triggering rate limits or abuse limits. Defaults to 3. | ||
|
||
### `concurrency` | ||
|
||
The number of allowed concurrent calls to the set secret endpoint. Lower this number to avoid abuse limits. Defaults to 10. | ||
|
||
### `dry_run` | ||
|
||
Run everything except for secret create and update functionality. | ||
|
@@ -48,6 +53,7 @@ uses: google/[email protected] | |
${{github.repository}} | ||
DRY_RUN: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_SECRETS }} | ||
CONCURRENCY: 10 | ||
env: | ||
FOO: ${{github.run_id}} | ||
FOOBAR: BAZ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.