Skip to content

Commit

Permalink
chore: comment action builder keep_versions
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellmueller committed Nov 26, 2024
1 parent 5f672ac commit 6051cd0
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
@@ -20,24 +20,24 @@ jobs:
steps:
- uses: bcgov-nr/[email protected]
with:
keep_versions: 50
# keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')

# https://github.com/bcgov/quickstart-openshift-helpers
deploys:
name: Deploys
needs: [builds]
uses: ./.github/workflows/.deployer.yml
secrets:
oc_namespace: ${{ secrets.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
with:
triggers: ('backend/' 'frontend/' 'migrations/' 'charts/')
db_user: app-${{github.event.number}}
params: --set global.secrets.persist=false
# deploys:
# name: Deploys
# needs: [builds]
# uses: ./.github/workflows/.deployer.yml
# secrets:
# oc_namespace: ${{ secrets.OC_NAMESPACE }}
# oc_token: ${{ secrets.OC_TOKEN }}
# with:
# triggers: ('backend/' 'frontend/' 'migrations/' 'charts/')
# db_user: app-${{github.event.number}}
# params: --set global.secrets.persist=false

tests:
name: Tests
@@ -49,6 +49,7 @@ jobs:

results:
name: PR Results
needs: [builds, tests]
needs: [builds, deploys, tests]
if: always()
runs-on: ubuntu-24.04

0 comments on commit 6051cd0

Please sign in to comment.