From c8f6b5c41f31c60d861a6d8ad589f83f5be50d95 Mon Sep 17 00:00:00 2001 From: gounthar Date: Fri, 22 Nov 2024 17:46:15 +0100 Subject: [PATCH 1/3] fix(ga): Add GitHub Actions workflow to manually trigger Dependabot. - Created a new workflow file `.github/workflows/run-dependabot.yml` to allow manual triggering of Dependabot using the `workflow_dispatch` event. - Configured the workflow to run Dependabot for GitHub Actions updates. --- .github/workflows/run-dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/run-dependabot.yml diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml new file mode 100644 index 00000000..64199a65 --- /dev/null +++ b/.github/workflows/run-dependabot.yml @@ -0,0 +1,19 @@ +name: Run Dependabot + +on: + workflow_dispatch: # Allows manual triggering of the workflow + +jobs: + dependabot: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run Dependabot + uses: dependabot/fetch-metadata@v1 + with: + package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From 5846b3912ca5b6c0fbafdffc2b0309db07f3a741 Mon Sep 17 00:00:00 2001 From: gounthar Date: Fri, 22 Nov 2024 17:48:03 +0100 Subject: [PATCH 2/3] fix(ga): A mapping was not expected --- .github/workflows/run-dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml index 64199a65..9e630171 100644 --- a/.github/workflows/run-dependabot.yml +++ b/.github/workflows/run-dependabot.yml @@ -15,5 +15,3 @@ jobs: with: package-ecosystem: "github-actions" directory: "/" - schedule: - interval: "daily" From 06297ffb0b3743dcacf49ecb2fb6bcf0dd7712a9 Mon Sep 17 00:00:00 2001 From: gounthar Date: Fri, 22 Nov 2024 17:54:54 +0100 Subject: [PATCH 3/3] fix(ga): Unexpected input(s) 'package-ecosystem', 'directory', valid inputs are ['alert-lookup', 'compat-lookup', 'github-token', 'skip-commit-verification', 'skip-verification'] --- .github/workflows/run-dependabot.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml index 9e630171..1b3b0e57 100644 --- a/.github/workflows/run-dependabot.yml +++ b/.github/workflows/run-dependabot.yml @@ -11,7 +11,9 @@ jobs: uses: actions/checkout@v4 - name: Run Dependabot - uses: dependabot/fetch-metadata@v1 + uses: dependabot/dependabot-core@v1 with: - package-ecosystem: "github-actions" + package-manager: "github-actions" directory: "/" + target-branch: "main" + open-pull-requests-limit: 5