generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
71 lines (67 loc) · 2.04 KB
/
pr-open.yml
File metadata and controls
71 lines (67 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: PR
on:
pull_request:
branches: [main]
concurrency:
# PR open and close use the same group, allowing only one at a time
group: pr-${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
permissions:
packages: write
contents: read
pull-requests: write
issues: write
jobs:
# https://github.com/bcgov/action-builder-ghcr
builds:
name: Builds
if: "!github.event.pull_request.head.repo.fork"
permissions:
packages: write
outputs:
digest: ${{ steps.builds.outputs.digest }}
runs-on: ubuntu-24.04
strategy:
matrix:
package: [ backend-go, backend-java, backend-py, migrations-go, migrations-py]
include:
- package: backend-go
triggers: ('backend-go/')
- package: backend-java
triggers: ('backend-java/')
- package: backend-py
triggers: ('backend-py/')
- package: migrations-py
triggers: ('backend-py/db')
build_context: ./backend-py/db
- package: migrations-go
triggers: ('backend-go/db')
build_context: ./backend-go/db
steps:
- uses: bcgov/action-builder-ghcr@ace71f7a527ca6fc43c15c7806314be5a4579d2c # v2.3.0
id: builds
with:
build_context: ${{ matrix.build_context }}
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
triggers: ${{ matrix.triggers }}
tag_fallback: latest
deploys:
name: Deploys
needs: [builds]
uses: ./.github/workflows/.deploy.yml
secrets:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
with:
db_user: app-${{ github.event.number }}
params: --set global.secrets.persist=false
results:
name: PR Results
needs: [ builds, deploys]
if: always()
runs-on: ubuntu-24.04
steps:
- if: contains(needs.*.result, 'failure')||contains(needs.*.result, 'canceled')
run: echo "At least one job has failed." && exit 1
- run: echo "Success!"