-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Prepare Release workflow (#682)
- Loading branch information
1 parent
253724e
commit c02c58d
Showing
3 changed files
with
191 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Release Prep | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Branch to merge release notes and code analysis into.' | ||
required: true | ||
default: 'main' | ||
version: | ||
description: | ||
'Version to use for the release. Must be in format: X.Y.Z.' | ||
date: | ||
description: | ||
'Date of the release. Must be in format YYYY-MM-DD.' | ||
|
||
jobs: | ||
preparerelease: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install requests==2.31.0 | ||
python -m pip install bandit==1.7.7 | ||
python -m pip install .[test] | ||
- name: Generate release notes | ||
env: | ||
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | ||
run: > | ||
python scripts/release_notes_generator.py | ||
-v ${{ inputs.version }} | ||
-d ${{ inputs.date }} | ||
- name: Save static code analysis | ||
env: | ||
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} | ||
run: > | ||
python -m scripts.bandit.bandit_report_generator | ||
- name: Create pull request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
commit-message: Prepare release for v${{ inputs.version }} | ||
author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | ||
committer: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | ||
title: v${{ inputs.version }} Release Preparation | ||
body: "This is an auto-generated PR to prepare the release." | ||
branch: prepared-release | ||
branch-suffix: short-commit-hash | ||
base: ${{ inputs.branch }} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,128 @@ | ||
"""Script to generate release notes.""" | ||
|
||
import argparse | ||
import os | ||
from collections import defaultdict | ||
|
||
import requests | ||
|
||
LABEL_TO_HEADER = { | ||
'feature request': 'New Features', | ||
'bug': 'Bugs Fixed', | ||
'internal': 'Internal', | ||
'maintenance': 'Maintenance', | ||
'customer success': 'Customer Success', | ||
'documentation': 'Documentation', | ||
'misc': 'Miscellaneous', | ||
} | ||
ISSUE_LABELS = [ | ||
'documentation', | ||
'maintenance', | ||
'internal', | ||
'bug', | ||
'feature request', | ||
'customer success', | ||
] | ||
NEW_LINE = '\n' | ||
GITHUB_URL = 'https://api.github.com/repos/sdv-dev/sdv' | ||
GITHUB_TOKEN = os.getenv('GH_ACCESS_TOKEN') | ||
|
||
|
||
def _get_milestone_number(milestone_title): | ||
url = f'{GITHUB_URL}/milestones' | ||
headers = {'Authorization': f'Bearer {GITHUB_TOKEN}'} | ||
query_params = {'milestone': milestone_title, 'state': 'all', 'per_page': 100} | ||
response = requests.get(url, headers=headers, params=query_params) | ||
body = response.json() | ||
if response.status_code != 200: | ||
raise Exception(str(body)) | ||
milestones = body | ||
for milestone in milestones: | ||
if milestone.get('title') == milestone_title: | ||
return milestone.get('number') | ||
raise ValueError(f'Milestone {milestone_title} not found in past 100 milestones.') | ||
|
||
|
||
def _get_issues_by_milestone(milestone): | ||
headers = {'Authorization': f'Bearer {GITHUB_TOKEN}'} | ||
# get milestone number | ||
milestone_number = _get_milestone_number(milestone) | ||
url = f'{GITHUB_URL}/issues' | ||
page = 1 | ||
query_params = {'milestone': milestone_number, 'state': 'all'} | ||
issues = [] | ||
while True: | ||
query_params['page'] = page | ||
response = requests.get(url, headers=headers, params=query_params) | ||
body = response.json() | ||
if response.status_code != 200: | ||
raise Exception(str(body)) | ||
issues_on_page = body | ||
if not issues_on_page: | ||
break | ||
issues.extend(issues_on_page) | ||
page += 1 | ||
return issues | ||
|
||
|
||
def _get_issues_by_category(release_issues): | ||
category_to_issues = defaultdict(list) | ||
for issue in release_issues: | ||
issue_title = issue['title'] | ||
issue_number = issue['number'] | ||
issue_url = issue['html_url'] | ||
line = f'* {issue_title} - Issue [#{issue_number}]({issue_url})' | ||
assignee = issue.get('assignee') | ||
if assignee: | ||
login = assignee['login'] | ||
line += f' by @{login}' | ||
# Check if any known label is marked on the issue | ||
labels = [label['name'] for label in issue['labels']] | ||
found_category = False | ||
for category in ISSUE_LABELS: | ||
if category in labels: | ||
category_to_issues[category].append(line) | ||
found_category = True | ||
break | ||
if not found_category: | ||
category_to_issues['misc'].append(line) | ||
return category_to_issues | ||
|
||
|
||
def _create_release_notes(issues_by_category, version, date): | ||
title = f'## v{version} - {date}' | ||
release_notes = f'{title}{NEW_LINE}{NEW_LINE}' | ||
for category in ISSUE_LABELS + ['misc']: | ||
issues = issues_by_category.get(category) | ||
if issues: | ||
section_text = ( | ||
f'### {LABEL_TO_HEADER[category]}{NEW_LINE}{NEW_LINE}' | ||
f'{NEW_LINE.join(issues)}{NEW_LINE}{NEW_LINE}' | ||
) | ||
release_notes += section_text | ||
return release_notes | ||
|
||
|
||
def update_release_notes(release_notes): | ||
"""Add the release notes for the new release to the ``HISTORY.md``.""" | ||
file_path = 'HISTORY.md' | ||
with open(file_path, 'r') as history_file: | ||
history = history_file.read() | ||
token = '# HISTORY\n\n' | ||
split_index = history.find(token) + len(token) + 1 | ||
header = history[:split_index] | ||
new_notes = f'{header}{release_notes}{history[split_index:]}' | ||
with open(file_path, 'w') as new_history_file: | ||
new_history_file.write(new_notes) | ||
|
||
|
||
if __name__ == '__main__': | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument('-v', '--version', type=str, help='Release version number (ie. v1.0.1)') | ||
parser.add_argument('-d', '--date', type=str, help='Date of release in format YYYY-MM-DD') | ||
args = parser.parse_args() | ||
release_number = args.version | ||
release_issues = _get_issues_by_milestone(release_number) | ||
issues_by_category = _get_issues_by_category(release_issues) | ||
release_notes = _create_release_notes(issues_by_category, release_number, args.date) | ||
update_release_notes(release_notes) |