From 14964a179bf0f90c949e0c208bdea4f439af26a7 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Thu, 16 Feb 2023 23:06:14 -0500 Subject: [PATCH] [Testing:Developer] Remove dependabot title fix workflow (#589) --- .github/dependabot.yml | 2 +- .github/workflows/dependabot_title_fix.yml | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 .github/workflows/dependabot_title_fix.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f2e27ed6..87bfd740 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,4 @@ updates: open-pull-requests-limit: 10 commit-message: prefix: "[Dependency] " - prefix-development: "[DevDependency]" + prefix-development: "[DevDependency] " diff --git a/.github/workflows/dependabot_title_fix.yml b/.github/workflows/dependabot_title_fix.yml deleted file mode 100644 index c47a53d3..00000000 --- a/.github/workflows/dependabot_title_fix.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: 'Dependabot PR Title Fixer' -on: - pull_request_target: - # check when PR - # * is created, - # * title is edited, and - # * new commits are added (to ensure failing title blocks merging) - types: [ opened, reopened, edited, synchronize ] - -jobs: - title-check: - runs-on: ubuntu-latest - steps: - - uses: submitty/action-dependabot-title-fixer@main - with: - token: ${{ secrets.REPO_SCOPED_TOKEN }}