Skip to content

Commit

Permalink
chore(dependabot): disable conditional check for Dependabot
Browse files Browse the repository at this point in the history
- Commented out the conditional check that restricts job execution to only when the user is 'dependabot[bot]'.
- This change allows the workflow to run regardless of the user, which may be useful for testing or debugging purposes.
  • Loading branch information
winromulus committed Jan 27, 2025
1 parent 44e42f2 commit 0113b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.auto.approve.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
# if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
Expand Down

0 comments on commit 0113b61

Please sign in to comment.