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 12, 2024
1 parent 147dccb commit f1c3dc6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/crucible-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: crucible-merged

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

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

0 comments on commit f1c3dc6

Please sign in to comment.