| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Introducing the Cycode Recovery Tool, an internal disaster recovery solution exclusively designed to support Cycode's customers. This invaluable tool steps in during times of a disaster, ensuring that your software development workflows remain resilient even when faced with adversity.
The tool expects a configuration file with SCM information named config.json. You can either add this config file when you build the docker image or mount the configuration file with docker run -v.
Sample config file:
[
{
"token": "<GitHub token with repo scope permission>",
"provider": "GitHub",
"repositories": [
{
"repository_name": "my_repository",
"organization_name": "my_organization",
"branch": "main"
}
],
"organizations": [
{
"organization_name": "my_organization"
},
{
"organization_name": "my_second_organization"
}
]
}
]
There are 2 options to run the Cycode recovery tool:
docker pull cycodehq/cycode_unblock_pull_request:latest
docker build -t cycode_unblock_pull_request . --no-cache
You will need to provide your configuration file
docker run -v /path/to/file/config.json:/app/config.json -ti cycode_unblock_pull_request

This project is licensed under the MIT License.
| Back | FazBrowse Home | New Git URL |