From 0915baf051b7453c85e105dadf76a7f9c8242970 Mon Sep 17 00:00:00 2001 From: Tyler Dixon Date: Fri, 28 Mar 2025 12:41:37 +0000 Subject: [PATCH] Update dependabot dependency update to be a workflow dispatch --- .github/workflows/post-dependabot.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index f9078c2..1232684 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -1,11 +1,13 @@ name: Update Dependencies on: - push: - branches: - - dependabot/npm_and_yarn/** - pull_request: - branches: - - dependabot/npm_and_yarn/** + workflow_dispatch: + inputs: + branch: + description: 'The branch to update dependencies on' + required: true + default: 'warning' + type: string + permissions: contents: write jobs: @@ -14,6 +16,7 @@ jobs: name: Update licensed cache steps: - uses: actions/checkout@v4 + ref: ${{ github.event.inputs.branch }} - run: npm ci