Skip to content

Commit

Permalink
add a new github workflow to run when PRs are merged
Browse files Browse the repository at this point in the history
- this workflow should result in userenv images that are built and
  pushed to the production quay.io repo
  • Loading branch information
k-rister committed Jun 13, 2024
1 parent 092acb2 commit d02258d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/crucible-merged.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: crucible-merged

on:
pull_request_target:
types: [ closed ]
branches: [ main ]
paths-ignore:
- LICENSE
- '**.md'
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-unittest.yaml
- 'docs/**'
workflow_dispatch:

jobs:
call-core-crucible-ci_if-merged:
if: github.event.pull_request.merged == true
uses: perftool-incubator/crucible-ci/.github/workflows/core-crucible-ci.yaml@main
with:
ci_target: "toolbox"
ci_target_branch: "main"
github_workspace: "$GITHUB_WORKSPACE"
secrets:
production_registry_auth: ${{ secrets.CRUCIBLE_PRODUCTION_ENGINES_REGISTRY_AUTH }}

0 comments on commit d02258d

Please sign in to comment.