Skip to content

Commit 4528a13

Browse files
authored
Remove unused fetch-metadata step (#1441)
The `fetch-metadata` step isn't used, so removed it. I checked `git blame` and this appears to have been unused from the start, not sure how it crept in here.
1 parent 88db06d commit 4528a13

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Diff for: .github/workflows/dependabot-auto-merge.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
1010
steps:
11-
- name: Fetch metadata
12-
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0
13-
14-
# Enable the automerge using a PAT so the merge commits trigger workflows
1511
- name: Auto-merge
16-
run: gh pr merge --auto --merge "$PR_URL"
12+
run: gh pr merge --auto --merge "${{ github.event.pull_request.html_url }}"
1713
env:
18-
PR_URL: ${{ github.event.pull_request.html_url }}
14+
# Enable the automerge using a PAT so the merge commits trigger workflows
1915
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_AUTOBUILD }}

0 commit comments

Comments
 (0)