From 717f829170336496301756fbb599311014b88279 Mon Sep 17 00:00:00 2001 From: Abdel Jaidi Date: Wed, 10 Jan 2024 20:22:16 +0000 Subject: [PATCH] feat: add dependabot-fetch-metadata action --- .github/workflows/dependabot-prs.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/dependabot-prs.yml diff --git a/.github/workflows/dependabot-prs.yml b/.github/workflows/dependabot-prs.yml new file mode 100644 index 000000000..83ee352ae --- /dev/null +++ b/.github/workflows/dependabot-prs.yml @@ -0,0 +1,15 @@ +name: Dependabot Pull Request Metadata +on: pull_request_target +jobs: + build: + permissions: + pull-requests: read + runs-on: ubuntu-latest + steps: + - name: Fetch Dependabot metadata + id: dependabot-metadata + uses: dependabot/fetch-metadata@v1 + with: + alert-lookup: true + compat-lookup: true + github-token: ${{ secrets.GITHUB_TOKEN }}