-
Notifications
You must be signed in to change notification settings - Fork 109
52 lines (47 loc) · 1.66 KB
/
publish-community-operators.yml
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
name: publish_community_operators
on: [push]
jobs:
create-pr-k8s-operatorbub-community-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: true
org: k8s-operatorhub
repo: community-operators
secrets:
app-id: ${{vars.GH_APP_ID}}
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}
create-pr-redhat-openshift-ecosystem-community-operators-prod:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: true
org: redhat-openshift-ecosystem
repo: community-operators-prod
secrets:
app-id: ${{vars.GH_APP_ID}}
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}
create-pr-redhat-openshift-ecosystem-redhat-marketplace-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: false
org: redhat-openshift-ecosystem
repo: redhat-marketplace-operators
secrets:
app-id: ${{vars.GH_APP_ID}}
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}
create-pr-redhat-openshift-ecosystem-certified-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: false
org: redhat-openshift-ecosystem
repo: certified-operators
secrets:
app-id: ${{vars.GH_APP_ID}}
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}