Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 0 additions & 72 deletions .github/workflows/branch_deploy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/deploy_snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branches:
- master
- develop

name: Deploy snapshot builds
jobs:
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/draft_new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: 'release'
- name: Extract version from milestone
run: |
VERSION="${{ github.event.milestone.title }}"
echo "::set-env name=RELEASE_VERSION::$VERSION"

- name: Create release branch
run: git checkout -b release/${{ env.RELEASE_VERSION }}
run: git checkout -b release-${{ env.RELEASE_VERSION }}

- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@1.1.0
Expand All @@ -34,12 +36,12 @@ jobs:
git commit --message "Prepare release ${{ env.RELEASE_VERSION }}"

- name: Push new branch
run: git push origin release/${{ env.RELEASE_VERSION }}
run: git push origin release-${{ env.RELEASE_VERSION }}

- name: Create pull request
uses: thomaseizinger/create-pull-request@1.0.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
head: release/${{ env.RELEASE_VERSION }}
base: master
head: release-${{ env.RELEASE_VERSION }}
base: release
title: Release ${{ env.RELEASE_VERSION }}