Skip to content

Commit ce0f0d1

Browse files
Workflow Update (#71)
* Remove workflow-dispatch for staging/prod envs. Remove references to old 'dev' branch * PR * test using this branch as reference * shared pipeline using main * return trigger from main * Renaming workflows
1 parent 03548c7 commit ce0f0d1

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/build-dev.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
2-
name: Build and Deploy Dev
2+
name: Dev | Build And Deploy
33
on:
4-
push:
5-
branches: [dev]
64
workflow_dispatch:
75
env:
86
REGISTRY: ghcr.io

.github/workflows/build-main.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
name: Build And Deploy
2+
name: Staging/Prod | Build And Deploy
33
on:
44
push:
55
branches: [main]
6-
workflow_dispatch:
76
env:
87
REGISTRY: ghcr.io
98
jobs: # We need two separate builds as each is going to a different ECR repo

.github/workflows/pr.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
name: PR Build
1+
name: PR | Build
22
on:
33
pull_request:
44
branches:
55
- main
6-
- dev
76
jobs:
87
build:
98
permissions:

0 commit comments

Comments
 (0)