From 0ce210932c9858e0fc54f775dde30950d51142a9 Mon Sep 17 00:00:00 2001 From: BatyLeo Date: Sun, 21 Jun 2026 00:38:23 +0200 Subject: [PATCH] Replace Tagbot with dependabot --- .github/dependabot.yml | 16 +++++++++++++--- .github/workflows/TagBot.yml | 33 --------------------------------- 2 files changed, 13 insertions(+), 36 deletions(-) delete mode 100644 .github/workflows/TagBot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff6499d6..8ef917a3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,17 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" # Location of package manifests + directory: "/" schedule: - interval: "weekly" \ No newline at end of file + interval: "weekly" + - package-ecosystem: "julia" + directories: # Location of Julia projects + - "." + - "./docs" + - "./test" + schedule: + interval: "weekly" + # groups: # uncomment to group all julia package updates into a single PR + # all-julia-packages: + # patterns: + # - "*" diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml deleted file mode 100644 index ba6db9e7..00000000 --- a/.github/workflows/TagBot.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: TagBot -on: - issue_comment: - types: - - created - workflow_dispatch: - inputs: - lookback: - default: "3" -permissions: - actions: read - checks: read - contents: write - deployments: read - issues: read - discussions: read - packages: read - pages: read - pull-requests: read - repository-projects: read - security-events: read - statuses: read -jobs: - TagBot: - if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' - runs-on: ubuntu-latest - steps: - - uses: JuliaRegistries/TagBot@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - # Edit the following line to reflect the actual name of the GitHub Secret containing your private key - ssh: ${{ secrets.DOCUMENTER_KEY }} - # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} \ No newline at end of file