From f25dfd66113f47cc164881d57fe0cf94cfbcf11b Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Fri, 4 Oct 2024 09:33:03 -0700 Subject: [PATCH] Automated dependency updates --- .github/dependabot.yml | 15 +++++++++++++++ .github/workflows/automerge.yml | 17 +++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/automerge.yml 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 }}