Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit c8423cb

Browse files
authored
Merge pull request #60 from aws-robotics/lucahan/add-auto-approve
Lucahan/add auto approve
2 parents cd51e27 + 4fc2c0b commit c8423cb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/autoapprove.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto approve
2+
3+
on: pull_request
4+
5+
jobs:
6+
# Auto-approve dependabot PRs since this repo requires at least one approving review.
7+
# Dependabot will automatically merge minor version upgrades
8+
# (see .dependabot/config.yml for more info).
9+
auto-approve-dependabot:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: hmarr/[email protected]
13+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
14+
with:
15+
github-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)