https://github.com/cleanlab/deploy-bot
https://github.com/cleanlab/deploy-bot
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cleanlab/deploy-bot
- Owner: cleanlab
- License: mit
- Created: 2022-10-28T23:21:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-11T16:57:51.000Z (almost 2 years ago)
- Last Synced: 2025-07-22T10:44:02.298Z (about 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deploy-bot
This action manages deployments by creating deployment PRs between a designated source and target branch.
The action first creates a deployment branch, from the source branch, named `deployment/%m-%d-%Y`. Then, a PR is created, targeting the target branch from the source branch. All contributors to the PR are added as reviewers.
## Example Workflow
An example workflow is shown below. This workflow runs the `deploy-bot` every weekday at 9AM ET.
```yaml
name: deploy-bot
on:
schedule:
- cron: 0 13 * * 1-5
jobs:
deploy:
steps:
- uses: cleanlab/deploy-bot@1.0.0
with:
source: staging
target: main
pr_body: "Daily deplyoment PR :robot:"
```