Skip to content

Commit ac9117c

Browse files
authored
Merge pull request #233 from botblock/feature/auto-approve-PRs-to-master
Auto approve PRs from Andre601 to master
2 parents 32c67dc + 7117ba6 commit ac9117c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/auto_approve_pr.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Automatically approve Pull requests
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
branches:
8+
- master
9+
10+
jobs:
11+
auto-approve:
12+
runs-on: ubuntu-latest
13+
if: ${{ github.actor == 'Andre601' }}
14+
steps:
15+
- uses: hmarr/auto-approve-action@v2
16+
with:
17+
github-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)