-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
172 additions
and
217 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,4 @@ | ||
template: | | ||
## What’s Changed | ||
$CHANGES |
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
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 |
---|---|---|
|
@@ -28,39 +28,33 @@ on: | |
signal-version: | ||
description: 'New version to use for Signal. Example: 3.0.2' | ||
required: false | ||
|
||
branch: | ||
description: 'Branch to be used when updating versions' | ||
required: true | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
update-versions: | ||
runs-on: macos-latest | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.event.inputs.branch }} | ||
|
||
- if: ${{ github.event.inputs.core-version != '' }} | ||
name: Update Core Version | ||
run: (sh ./scripts/update-versions.sh -n Core -v ${{ github.event.inputs.core-version }}) | ||
run: (sh ./scripts/versions.sh -u -n Core -v ${{ github.event.inputs.core-version }}) | ||
|
||
- if: ${{ github.event.inputs.identity-version != '' }} | ||
name: Update Identity Version | ||
run: (sh ./scripts/update-versions.sh -n Identity -v ${{ github.event.inputs.identity-version }}) | ||
run: (sh ./scripts/versions.sh -u -n Identity -v ${{ github.event.inputs.identity-version }}) | ||
|
||
- if: ${{ github.event.inputs.lifecycle-version != '' }} | ||
name: Update Lifecycle Version | ||
run: (sh ./scripts/update-versions.sh -n Lifecycle -v ${{ github.event.inputs.lifecycle-version }}) | ||
run: (sh ./scripts/versions.sh -u -n Lifecycle -v ${{ github.event.inputs.lifecycle-version }}) | ||
|
||
- if: ${{ github.event.inputs.signal-version != '' }} | ||
name: Update Signal Version | ||
run: (sh ./scripts/update-versions.sh -n Signal -v ${{ github.event.inputs.signal-version }}) | ||
run: (sh ./scripts/versions.sh -u -n Signal -v ${{ github.event.inputs.signal-version }}) | ||
|
||
- name: Generate Commit Message | ||
shell: bash | ||
|
@@ -88,4 +82,3 @@ jobs: | |
commit-message: Update versions ${{ env.COMMIT_MSG }} | ||
title: Update versions ${{ env.COMMIT_MSG }} | ||
body: Update versions ${{ env.COMMIT_MSG }} | ||
base: ${{ github.event.inputs.branch }} |
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
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
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
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
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
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
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
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
Oops, something went wrong.