From 0101a2a3764798b37ce2c5f8bd9a32f9a9db2666 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 5 May 2025 16:04:08 -0400 Subject: [PATCH 1/2] .github: bump tags only on workflow_dispatch --- .github/workflows/bump-tag.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/bump-tag.yml b/.github/workflows/bump-tag.yml index 8609e191f..df0528330 100644 --- a/.github/workflows/bump-tag.yml +++ b/.github/workflows/bump-tag.yml @@ -1,10 +1,7 @@ name: Bump Tags on Main on: - push: - branches: - - main - + workflow_dispatch: jobs: bump-tags: runs-on: blacksmith From b654cfef6ed0ac949920b11d607dba2a3a5a52ba Mon Sep 17 00:00:00 2001 From: blacksmith-axlora Date: Sat, 14 Jun 2025 08:06:55 -0400 Subject: [PATCH 2/2] chore: remove dependabot.yml --- .github/dependabot.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 853bc0a13..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,22 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file - -version: 2 -updates: - # Enable version updates for npm - - package-ecosystem: 'npm' - # Look for `package.json` and `lock` files in the `root` directory - directory: '/' - # Check the npm registry for updates every day (weekdays) - schedule: - interval: 'weekly' - - # Enable version updates for GitHub Actions - - package-ecosystem: 'github-actions' - # Workflow files stored in the default location of `.github/workflows` - # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`. - directory: '/' - schedule: - interval: 'weekly'