From 0263d9d44a9118cc14016725dbb56d9a68bfd1ab Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 7 Jun 2026 05:04:47 -0400 Subject: [PATCH] ci: add standard centralized workflows Adds the standard SciML centralized caller workflows that were missing: - RunicSuggestions.yml - DependabotAutoMerge.yml - DocPreviewCleanup.yml Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/DependabotAutoMerge.yml | 9 +++++++++ .github/workflows/DocPreviewCleanup.yml | 10 ++++++++++ .github/workflows/RunicSuggestions.yml | 9 +++++++++ 3 files changed, 28 insertions(+) create mode 100644 .github/workflows/DependabotAutoMerge.yml create mode 100644 .github/workflows/DocPreviewCleanup.yml create mode 100644 .github/workflows/RunicSuggestions.yml diff --git a/.github/workflows/DependabotAutoMerge.yml b/.github/workflows/DependabotAutoMerge.yml new file mode 100644 index 0000000..44b814c --- /dev/null +++ b/.github/workflows/DependabotAutoMerge.yml @@ -0,0 +1,9 @@ +name: "Dependabot Auto-merge" +on: pull_request +permissions: + contents: write + pull-requests: write +jobs: + automerge: + uses: "SciML/.github/.github/workflows/dependabot-automerge.yml@v1" + secrets: "inherit" diff --git a/.github/workflows/DocPreviewCleanup.yml b/.github/workflows/DocPreviewCleanup.yml new file mode 100644 index 0000000..960a549 --- /dev/null +++ b/.github/workflows/DocPreviewCleanup.yml @@ -0,0 +1,10 @@ +name: "Doc Preview Cleanup" +on: + pull_request: + types: [closed] +permissions: + contents: write +jobs: + cleanup: + uses: "SciML/.github/.github/workflows/docs-preview-cleanup.yml@v1" + secrets: "inherit" diff --git a/.github/workflows/RunicSuggestions.yml b/.github/workflows/RunicSuggestions.yml new file mode 100644 index 0000000..43c0768 --- /dev/null +++ b/.github/workflows/RunicSuggestions.yml @@ -0,0 +1,9 @@ +name: "Runic Suggestions" +on: pull_request +permissions: + contents: read + pull-requests: write +jobs: + runic-suggestions: + uses: "SciML/.github/.github/workflows/runic-suggestions-on-pr.yml@v1" + secrets: "inherit"