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 10, 2024
1 parent 51eb7aa commit 6200a2b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/crucible-merged.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: crucible-merged

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

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

0 comments on commit 6200a2b

Please sign in to comment.