Skip to content

Commit

Permalink
Updated the GitHub Actions workflow to trigger on both push and pull_…
Browse files Browse the repository at this point in the history
…request events, specifically when a pull request is opened, on the main branch. This change was made to ensure that Dependabot automatically merges pull requests when they are opened on the main branch.
  • Loading branch information
thejmitchener committed Nov 10, 2023
1 parent 85dbe30 commit a933d8f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dependabot-auto-pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Dependabot auto pr merge

on: pull_request
on:
push:
pull_request:
types: [ opened ]
branches:
- main

jobs:
dependabot:
Expand Down

0 comments on commit a933d8f

Please sign in to comment.