-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for multiple branches update (#32)
- Loading branch information
Showing
11 changed files
with
11,088 additions
and
2,802 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
clones | ||
clones | ||
.DS_Store |
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 |
---|---|---|
|
@@ -65,6 +65,7 @@ repos_to_ignore | Comma-separated list of repositories that should not get updat | |
topics_to_include | Comma-separated list of topics that should get updates from this action. Repos that do not contain one of the specified topics will get appended to the repos_to_ignore list. In the format `topic1,topic2`. | false | - | ||
exclude_private | Boolean value on whether to exclude private repositories from this action. | false | false | ||
exclude_forked | Boolean value on whether to exclude forked repositories from this action. | false | false | ||
branches | By default, action creates branch from default branch and opens PR only against default branch. With this property you can override this behaviour. You can provide a comma-separated list of branches this action shoudl work against. You can also provide regex, but without comma as list of branches is split in code by comma. | false | default branch is used | ||
|
||
## Examples | ||
|
||
|
@@ -120,6 +121,7 @@ jobs: | |
topics_to_include: topic1,topic2 | ||
exclude_private: true | ||
exclude_forked: true | ||
branches: .*-release,main | ||
committer_username: santiago-bernabeu | ||
committer_email: [email protected] | ||
commit_message: "ci: update global workflows" | ||
|
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.