diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..aed9cbd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: 'composer' + directory: '/' + versioning-strategy: lockfile-only + schedule: + interval: 'weekly' + groups: + dependencies: + patterns: + - '*' + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml new file mode 100644 index 0000000..bc780f8 --- /dev/null +++ b/.github/workflows/automerge.yml @@ -0,0 +1,17 @@ +name: Auto-merge dependency updates +on: + workflow_run: + types: + - 'completed' + workflows: + - 'Tests' + branches: + - 'dependabot/**' +permissions: + contents: write + pull-requests: write +jobs: + automerge: + uses: acquia/.github/.github/workflows/automerge.yml@main + secrets: + github-token: ${{ secrets.GITHUB_TOKEN }}