Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/repair-dependabot-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Repair Dependabot pull requests
name: Repair dependency update pull requests

on:
pull_request:
Expand All @@ -13,7 +13,7 @@ permissions:
jobs:
repair:
name: Repair constraints, lockfile and changelogs
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || startsWith(github.event.pull_request.head.ref, 'renovate/') }}
Comment thread
cursor[bot] marked this conversation as resolved.
runs-on: ubuntu-latest
environment: dependabot
permissions:
Expand All @@ -37,10 +37,11 @@ jobs:
fetch-depth: 0
persist-credentials: false

# Deliberately not `metamask-ci[bot]`: that is the identity Renovate commits under, and Renovate only leaves a branch alone once it sees a commit from someone else.
- name: Configure Git
run: |
git config user.name 'metamask-ci[bot]'
git config user.email '271559518+metamask-ci[bot]@users.noreply.github.com'
git config user.name 'github-actions[bot]'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done to fix #10322 (comment)

git config user.email '41898282+github-actions[bot]@users.noreply.github.com'

- name: Get merge base and starting commit
id: refs
Expand Down
Loading