You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dependabot-approve-merge.yml 637B

12345678910111213141516171819
  1. name: Dependabot
  2. on: pull_request
  3. jobs:
  4. auto-merge:
  5. runs-on: ubuntu-latest
  6. steps:
  7. # Default github action approve
  8. - uses: hmarr/auto-approve-action@v2.0.0
  9. if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
  10. with:
  11. github-token: ${{ secrets.GITHUB_TOKEN }}
  12. # Nextcloud bot approve and merge request
  13. - uses: ahmadnassri/action-dependabot-auto-merge@v1
  14. if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
  15. with:
  16. target: patch
  17. github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }}