Skip to content

Commit b8f8e11

Browse files
Create design document for automated releases
Signed-off-by: Courtney Pacheco <6019922+courtneypacheco@users.noreply.github.com>
1 parent d3b06cf commit b8f8e11

3 files changed

+121
-0
lines changed

.spellcheck-en-custom.txt

+1
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ safetensor
215215
safetensors
216216
Salawu
217217
scalable
218+
Schedulable
218219
SDG
219220
sdg
220221
SDK
+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Creating Automated Releases: Design Document
2+
3+
## Motivation & Overview
4+
5+
Presently, the release processes for every library within this `instructlab` GitHub organization is entirely manual:
6+
7+
A maintainer has to:
8+
9+
1. Manually create a new release branch -- e.g., `release-0.y.0`,
10+
2. Manually create a pull request against `release-0.y.0` to cap the versions on some of the dependencies defined in their library's `requirements.txt` file,
11+
3. Optionally trigger an E2E test against that pull request,
12+
4. Wait for all pull request CI checks to complete,
13+
5. Manually request two maintainers to approve the pull request, and
14+
6. Manually create a release from the GitHub UI using that new branch
15+
16+
This entire process takes at least 10 minutes of manual work, plus however long it takes for the pull request's checks to complete. (In some repositories, like the core repo, this can take 2+ hours.)
17+
18+
Going forward, we should automate these release processes so that contributors and maintainers can focus more on development work and less on creating actual releases.
19+
20+
## Automation Workflow
21+
22+
### Brief Overview of the Automation
23+
24+
The automation logic described in this dev-doc will be published in the form of an in-house GitHub action called `create-automated-release` and it will therefore be callable from any workflow file. Thus, it is strongly recommended that each repository maintainer creates a `.github/workflows/automated-release.yml` workflow file to call this `create-automated-release` GitHub action from.
25+
26+
### Goals of the Automation
27+
28+
The automated process should be:
29+
30+
1. Configurable so that any library maintainer can configure the automation to meet their specific repository's needs
31+
2. Schedulable so that releases are generated according to a specific cadence
32+
33+
Scheduled releases are generally important for setting expectations around release cadences, but they are by no means required for every library and may not even be applicable to some in this GitHub organization.
34+
35+
### Configurable Components
36+
37+
As mentioned above, there are configurable components within this release process automation. The diagram in the next section references two configurable components:
38+
39+
#### Trigger Schedule
40+
41+
The trigger schedule defines the day and time (in UTC) when the release process will kick off. This schedule can be disabled if desired, and maintainers can trigger the release process manually when needed instead.
42+
43+
As mentioned in the brief overview of the automation, this in-house `create-automated-release` action will be callable from any workflow file. Thus, each library maintainer who wants to create a scheduled release should first create a `.github/workflows/automated-release.yml` workflow file in their repository and define a schedule for it. For example:
44+
45+
```yaml
46+
name: Create Y-Stream Release
47+
48+
on:
49+
schedule:
50+
- cron: '30 1 1,15 * *' # Triggers at 1:30am UTC every 2 weeks on the 1st and the 15th day of each month
51+
```
52+
53+
#### Custom List of Dependencies to Cap
54+
55+
With each release, some library maintainers may want to cap the version of certain dependencies within their `requirements.txt` file as well as specify the desired upper cap for each one.
56+
57+
The list of dependencies to cap should be provided in a file called `automated-release-config.yml`. This configuration file may be expanded in the future to accommodate more configurations as needed. Example:
58+
59+
```yaml
60+
release:
61+
62+
dependency_caps:
63+
enable: true # optional parameter. If set to false, then none of the dependencies in `requirements.txt` will be capped.
64+
packages:
65+
instructlab-sdg: "+0.1.0"
66+
instructlab-eval: "+0.2.0"
67+
instructlab-training: "+1.0.0"
68+
```
69+
70+
The keys specify the dependencies to cap. (In this case, we only have three: `instructlab-sdg`, `instructlab-eval`, and `instructlab-training`. The other dependencies in the `requirements.txt` file will be ignored and left untouched.)
71+
72+
The value for each key specifies the cap relative to the current lower bound. For example, let's say the current `requirements.txt` file looks like this:
73+
74+
```bash
75+
instructlab-sdg>0.20.0
76+
instructlab-eval>0.1.0
77+
instructlab-training
78+
```
79+
80+
In this case, the automated logic will create a pull request that updates the `requirements.txt` file like so (ignoring the inline explanations I provided as comments):
81+
82+
```bash
83+
instructlab-sdg>0.20.0,<=0.21.0 # increment by 0.1.0 because of the '+0.1.0' in the `cap-deps.cfg` file
84+
instructlab-eval>0.1.0,<=0.3.0 # increment by 0.2.0 because of the '+0.2.0' in the `cap-deps.cfg` file
85+
instructlab-training # do nothing because there was no lower bound set.
86+
```
87+
88+
If `dependency_caps` is not defined or `enable` is set to `False` under the `dependency_caps` key, then none of the dependencies defined in `requirements.txt` will be capped. If a dependency to cap is defined in `dependency_caps` and that dependency doesn't exist, then it will be ignored.
89+
90+
### Example Workflow File
91+
92+
Below is an example workflow file used to call this in-house GitHub action:
93+
94+
```yaml
95+
name: Create Y-Stream Release
96+
97+
on:
98+
# Run every Monday at 1AM UTC
99+
schedule:
100+
- cron: '0 7 * * 1 '
101+
102+
# Allow manual dispatch, too
103+
workflow_dispatch:
104+
inputs:
105+
pr_or_branch:
106+
description: 'pull request number or branch name'
107+
required: true
108+
default: 'main'
109+
110+
jobs:
111+
create-release:
112+
runs-on: ubuntu-latest
113+
steps:
114+
- name: "create-automated-release"
115+
uses: instructlab/ci-actions/create-automated-release@v1
116+
```
117+
118+
## Release Flow Diagram
119+
120+
![Automated workflow for creating new GitHub releases](../images/design-diagram-for-automated-releases.png)
Loading

0 commit comments

Comments
 (0)