From 664252e3b9f7091590a31e2f74bc0a65c304315b 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:11:37 +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 0000000..ec874bf --- /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 123ef05376c46d47cb98914075b788d86b7ff269 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:11:39 +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 0000000..562a60a --- /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 b2d1aae4211e6174003f5398336cbf63385c649a 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:11:40 +0000 Subject: [PATCH 3/3] ci: remove CircleCI config (migrated to GitHub Actions) --- .circleci/config.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 4f1431f..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,21 +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 0 * * 0-5" - filters: - branches: - only: - - main - jobs: - - tutorial-checker-orb/build-all - build: - jobs: - - tutorial-checker-orb/build-pull-request