From 83cee48dced626f51e3a3ad239f4ea75bc922900 Mon Sep 17 00:00:00 2001 From: "sap-tutorials-builder[bot]" <308056490+sap-tutorials-builder[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 22:10:13 +0000 Subject: [PATCH 1/3] ci: add Tutorial PR Checks caller (central checks) --- .github/workflows/tutorial-pr-checks.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/tutorial-pr-checks.yml diff --git a/.github/workflows/tutorial-pr-checks.yml b/.github/workflows/tutorial-pr-checks.yml new file mode 100644 index 000000000..ec874bf3b --- /dev/null +++ b/.github/workflows/tutorial-pr-checks.yml @@ -0,0 +1,10 @@ +name: Tutorial PR Checks +on: + pull_request: + types: [opened, synchronize, reopened] +jobs: + checks: + uses: sap-tutorials/tutorial-ci/.github/workflows/tutorial-pr-checks.yml@v1 + permissions: + contents: read + secrets: inherit From cca2cc41b085148f4a705c12af3dd41521eab2f9 Mon Sep 17 00:00:00 2001 From: "sap-tutorials-builder[bot]" <308056490+sap-tutorials-builder[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 22:10:14 +0000 Subject: [PATCH 2/3] ci: add Tutorial PR Comment caller (sticky comment) --- .github/workflows/tutorial-pr-comment.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/tutorial-pr-comment.yml diff --git a/.github/workflows/tutorial-pr-comment.yml b/.github/workflows/tutorial-pr-comment.yml new file mode 100644 index 000000000..562a60a42 --- /dev/null +++ b/.github/workflows/tutorial-pr-comment.yml @@ -0,0 +1,12 @@ +name: Tutorial PR Comment +on: + workflow_run: + workflows: ["Tutorial PR Checks"] + types: [completed] +jobs: + comment: + uses: sap-tutorials/tutorial-ci/.github/workflows/post-results.yml@v1 + permissions: + actions: read + contents: read + secrets: inherit From 1a4d5082bc814718b556061687e94022227c4701 Mon Sep 17 00:00:00 2001 From: "sap-tutorials-builder[bot]" <308056490+sap-tutorials-builder[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 22:10:16 +0000 Subject: [PATCH 3/3] ci: remove CircleCI config (migrated to GitHub Actions) --- .circleci/config.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index d0b7d80b5..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,18 +0,0 @@ -orbs: - tutorial-checker-orb: saptutorials/tutorial-checker@1.0.0 -version: 2.1 -notify: - webhooks: - - url: https://webhooks.gitter.im/e/15f197634234d80a32fa -workflows: - version: 2 - nightly: - triggers: - - schedule: - cron: "0 1 * * 0-5" - filters: - branches: - only: - - master - jobs: - - tutorial-checker-orb/build-all