.github/workflows/auto-approve.yml in rack-graphql-1.2.5 vs .github/workflows/auto-approve.yml in rack-graphql-2.0.0.rc
- old
+ new
@@ -1,16 +1,16 @@
-# automatically approve PRs submitted by Dependabot
+# automatically approve PRs submitted by Dependabot or Renofidev
# this will allow Dependabot to automatically merge dependency update PRs where CI passes
# from: https://github.com/hmarr/auto-approve-action
-name: Auto approve Dependabot PRs
+name: Auto approve dependency upgrades PRs
on:
pull_request
jobs:
auto-approve:
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v2.0.0
- if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
+ if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"