From da14bf07bfb370d1ce2a36a83beec87d13705c61 Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 28 Sep 2022 13:21:31 -0700 Subject: [PATCH] chore: fix danger workflow @see https://github.com/ipfs/awesome-ipfs/actions/runs/3146587462/jobs/5115210333#step:7:27 --- .github/workflows/pull_requests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index f059792..3658a6c 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -32,6 +32,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + token: ${{ secrets.DANGER_GITHUB_API_TOKEN }} - name: Setup Node.js uses: actions/setup-node@v3 with: @@ -56,4 +58,4 @@ jobs: run: npm run ci:danger env: DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}