Skip to content
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}}

Check failure on line 15 in .github/workflows/publish-community-operators.yml

View workflow run for this annotation

GitHub Actions / publish_community_operators

Invalid workflow file

The workflow is not valid. .github/workflows/publish-community-operators.yml (Line: 15, Col: 15): Invalid secret, app-id is not defined in the referenced workflow. .github/workflows/publish-community-operators.yml (Line: 16, Col: 20): Invalid secret, private-key is not defined in the referenced workflow.
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}}