-
Notifications
You must be signed in to change notification settings - Fork 0
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
20 changed files
with
61 additions
and
1,379 deletions.
There are no files selected for viewing
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,27 @@ | ||
name: Release Branch Tagger | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'release/**' | ||
|
||
jobs: | ||
release-branch-tagger: | ||
name: Tag & Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
# Action needs all info about tags so pass fetch-depth: 0 | ||
fetch-depth: 0 | ||
|
||
- name: Tag & Release | ||
uses: ./release-branch-tagger # Uses an action in the root directory | ||
env: | ||
# Use SKEDIBOT_PAT so it can trigger deploy actions from running. | ||
GITHUB_TOKEN: ${{ secrets.SKEDIBOT_PAT }} | ||
with: | ||
applications: '[{"name":"web-admin"}, {"name":"web-video"}]' | ||
is-stable-release: ${{ github.event_name == 'workflow_dispatch' }} | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,16 +1,13 @@ | ||
name: 'Hello World' | ||
description: 'Greet someone and record the time' | ||
name: 'Release Creator' | ||
description: 'Will loop over Skedify repos & create release branches/trigger stable release' | ||
inputs: | ||
GITHUB_TOKEN: # id of input | ||
description: 'GitHub Auth token' | ||
required: true | ||
RELEASE_VERSION: # id of input | ||
release-name: # id of input | ||
description: 'Release version' | ||
required: true | ||
FINALISE_RELEASE: # id of input | ||
description: 'Y/N to create release tags' | ||
finalize-release: # id of input | ||
description: 'Y/N to create stable release tags' | ||
required: true | ||
# default: 'World' | ||
default: 'N' | ||
runs: | ||
using: 'node12' | ||
main: './dist/index.js' |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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