From 3aa5d4d057955819f7563d8013e45a36c574461b Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 7 Jun 2026 04:57:41 -0400 Subject: [PATCH 1/2] ci: add standard centralized workflows 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/FormatSuggestions.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/FormatSuggestions.yml diff --git a/.github/workflows/DependabotAutoMerge.yml b/.github/workflows/DependabotAutoMerge.yml new file mode 100644 index 00000000..44b814c7 --- /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 00000000..960a5492 --- /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/FormatSuggestions.yml b/.github/workflows/FormatSuggestions.yml new file mode 100644 index 00000000..f3cb2c91 --- /dev/null +++ b/.github/workflows/FormatSuggestions.yml @@ -0,0 +1,9 @@ +name: "Format Suggestions" +on: pull_request +permissions: + contents: read + pull-requests: write +jobs: + format-suggestions: + uses: "SciML/.github/.github/workflows/format-suggestions-on-pr.yml@v1" + secrets: "inherit" From 3ecfc6310535a0c52d0287034525fe6e2018befd Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Sun, 7 Jun 2026 09:13:36 -0400 Subject: [PATCH 2/2] Remove FormatSuggestions workflow from JumpProcesses.jl JumpProcesses.jl uses JuliaFormatter (non-Runic) and keeps FormatCheck.yml as the format gate; the format-suggestions-on-pr auto-suggestion bot is not used here. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/FormatSuggestions.yml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 .github/workflows/FormatSuggestions.yml diff --git a/.github/workflows/FormatSuggestions.yml b/.github/workflows/FormatSuggestions.yml deleted file mode 100644 index f3cb2c91..00000000 --- a/.github/workflows/FormatSuggestions.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: "Format Suggestions" -on: pull_request -permissions: - contents: read - pull-requests: write -jobs: - format-suggestions: - uses: "SciML/.github/.github/workflows/format-suggestions-on-pr.yml@v1" - secrets: "inherit"