From 57804fff8515d15a78fc148dfcfaa9e1bd65987c Mon Sep 17 00:00:00 2001 From: Karl Rister Date: Wed, 25 Sep 2024 12:54:52 -0500 Subject: [PATCH] add the crucible-merged.yaml GitHub workflow --- .github/workflows/crucible-merged.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/crucible-merged.yaml diff --git a/.github/workflows/crucible-merged.yaml b/.github/workflows/crucible-merged.yaml new file mode 100644 index 0000000..48db4c5 --- /dev/null +++ b/.github/workflows/crucible-merged.yaml @@ -0,0 +1,25 @@ +name: crucible-merged + +on: + pull_request_target: + types: [ closed ] + branches: [ master ] + paths-ignore: + - LICENSE + - '**.md' + - .github/workflows/run-crucible-tracking.yaml + - .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: "kernel" + ci_target_branch: "master" + github_workspace: "$GITHUB_WORKSPACE" + secrets: + production_registry_auth: ${{ secrets.CRUCIBLE_PRODUCTION_ENGINES_REGISTRY_AUTH }} + quay_oauth_token: ${{ secrets.CRUCIBLE_QUAYIO_OAUTH_TOKEN }}