Skip to content

Commit

Permalink
Add changelog and auto-bump on develop
Browse files Browse the repository at this point in the history
  • Loading branch information
frankinspace committed Jun 26, 2024
1 parent f3912fd commit ae7b79c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release-branch-created.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

name: Release Branch Created

# Run whenever a ref is created https://docs.github.com/en/actions/reference/events-that-trigger-workflows#create
on:
create

jobs:
# First job in the workflow builds and verifies the software artifacts
bump:
name: Bump minor version on develop
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Only run if ref created was a release branch
if:
${{ startsWith(github.ref, 'refs/heads/release/') }}
steps:
- uses: getsentry/action-github-app-token@v3
name: maap cicd token
id: maap-cicd
with:
app_id: ${{ secrets.CICD_APP }}
private_key: ${{ secrets.CICD_APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
token: ${{ steps.maap-cicd.outputs.token }}
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.8.2
- name: Bump minor version
run: |
poetry version ${GITHUB_REF#refs/heads/release/}
poetry version preminor
echo "software_version=$(poetry version | awk '{print $2}')" >> $GITHUB_ENV
- name: Commit Version Bump
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git commit -am "/version ${{ env.software_version }}"
git push
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v4.0.0] - 2024-06-26
- [issues/111](https://github.com/MAAP-Project/maap-api-nasa/issues/111) - Implement github actions CICD and convert to poetry based build
- [pull/110](https://github.com/MAAP-Project/maap-api-nasa/pull/110) - Remove postgres from docker-compose
- [issues/112](https://github.com/MAAP-Project/maap-api-nasa/issues/112) - Update settings.py to load settings from OS Environment
- [pull/116](https://github.com/MAAP-Project/maap-api-nasa/pull/116) & [issues/909](https://github.com/MAAP-Project/Community/issues/909) - Add /config endpoint that can be used to configure maap-py
- [pull/122](https://github.com/MAAP-Project/maap-api-nasa/pull/122) - Bump lightweight jobs from v0.0.5 to v1.2.2


[unreleased]: https://github.com/MAAP-Project/maap-api-nasa/v4.0.0...HEAD
[v4.0.0]: https://github.com/MAAP-Project/maap-api-nasa/compare/v3.1.5...v4.0.0

0 comments on commit ae7b79c

Please sign in to comment.