From 102087b07ac129f97f442f2aaaba5148229d890d Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 23 Oct 2023 11:48:03 -0400 Subject: [PATCH] Add `ci-snapshot.yml` GHA Workflow * Make it reuse a workflow from `spring-integration-aws` as an experiment --- .github/workflows/ci-snapshot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci-snapshot.yml diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml new file mode 100644 index 0000000000..f9aa4d0c80 --- /dev/null +++ b/.github/workflows/ci-snapshot.yml @@ -0,0 +1,13 @@ +name: CI SNAPSHOT + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + build_snapshot: + uses: spring-projects/spring-integration-aws/.github/workflows/ci-snapshot.yml@main + secrets: inherit +