-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#345: make popular options transmission directly to YAML configuration
- Loading branch information
Showing
4 changed files
with
26 additions
and
4 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
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 |
---|---|---|
|
@@ -34,9 +34,8 @@ jobs: | |
- uses: zerocracy/[email protected] | ||
with: | ||
token: ${{ secrets.ZEROCRACY_TOKEN }} | ||
options: | | ||
github_token=${{ secrets.GITHUB_TOKEN }} | ||
repositories=... | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
repositories: yegor256/judges,yegor256/factbase,zerocracy/* | ||
factbase: foo.fb | ||
- uses: zerocracy/[email protected] | ||
with: | ||
|
@@ -78,6 +77,13 @@ The following options are expected by the plugin | |
* `options` (mandatory) is a list of `k=v` pairs, which are explained below | ||
* `factbase` (mandatory) is the path of the [Factbase][factbase] file | ||
(where everything is kept) | ||
* `repositories` (optional) is a comma-separated list of masks that | ||
determine the repositories to manage, where | ||
`yegor256/*` means all repos of the user, | ||
`yegor256/judges` means a specific repo, | ||
and | ||
`-yegor256/judges` means an exclusion of the repo from the list. | ||
* `github_token` (optional) is an authentication GitHub access token | ||
* `verbose` (optional) makes it print debugging info if set to `true` | ||
* `cycles` (optional) is a number of update cycles to run | ||
|
||
|
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