Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI build
jobs:
ci-default:
uses: Groww/github-wf-templates/.github/workflows/app-ci.yaml@master
with:
BUILD_PROFILE: default
secrets: inherit
on:
pull_request:
types:
- closed
issue_comment:
types:
- created
29 changes: 29 additions & 0 deletions .github/workflows/deploy_to_prod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy to prod
jobs:
deploy_to_prod:
uses: Groww/github-wf-templates/.github/workflows/deploy-v2.yaml@master
with:
build_version: ${{ github.event.inputs.build_version }}
env: prod
BUILD_PROFILE: ${{ github.event.inputs.build_profile }}
secrets: inherit
on:
workflow_dispatch:
inputs:
build_profile:
description: Select profile to run
required: true
default: work
type: choice
options:
- registration
- work
- placement
- registration-operator
- addon-manager
build_version:
description: Build Version
required: true
additional_comments:
description: Comments
required: true
29 changes: 29 additions & 0 deletions .github/workflows/deploy_to_release_hotfix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy to release hotfix
jobs:
deploy_to_release:
uses: Groww/github-wf-templates/.github/workflows/deploy_hotfix.yaml@master
with:
build_version: ${{ github.event.inputs.build_version }}
env: release
BUILD_PROFILE: ${{ github.event.inputs.build_profile }}
secrets: inherit
on:
workflow_dispatch:
inputs:
build_profile:
description: Select profile to run
required: true
default: work
type: choice
options:
- registration
- work
- placement
- registration-operator
- addon-manager
build_version:
description: Build Version
required: true
additional_comments:
description: Comments
required: true
Loading
Loading