This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
43 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,43 +1 @@ | ||
# gh-pre | ||
|
||
An experimental tool that helps with Project Release Engineering, focused on | ||
repository clusters (groups of repositories that need to be released in | ||
particular order). | ||
|
||
```shell | ||
gh extension install pycontribs/gh-pre | ||
``` | ||
|
||
## Configuration | ||
|
||
To use the tool you need to configure the list of repositories it needs to check on each run: | ||
|
||
```yaml | ||
# ~/pre.yml | ||
repos: | ||
- ansible/ansible-compat | ||
- ansible/ansible-lint | ||
- ansible/ansible-navigator | ||
- ansible/ansible-creator | ||
- ansible/molecule | ||
- ansible/tox-ansible | ||
- ansible/pytest-ansible | ||
- ansible/ansible-development-environment | ||
- ansible/ansible-dev-tools | ||
- ansible/creator-ee | ||
``` | ||
This will tell it which repositories to check for draft releases. | ||
## Usage | ||
```shell | ||
gh pre | ||
``` | ||
|
||
It can also be installed and executed as a Python package: | ||
|
||
```shell | ||
pip install gh-pre | ||
pre | ||
``` | ||
Project now part of https://mk.readthedocs.io/multirepo/ |