From 867fb05cbfedc4980a08fe0d73c585fa55d13b01 Mon Sep 17 00:00:00 2001 From: Carl-Christian Sautter Date: Sat, 10 Feb 2024 20:46:47 +0100 Subject: [PATCH] github action - dependabot auto merge --- .github/workflows/dependabot-auto-merge.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dependabot-auto-merge.yml diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..b624100 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,19 @@ +name: auto-merge + +on: + pull_request: + +permissions: + pull-requests: write + issues: write + repository-projects: write + +jobs: + auto-merge: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + target: minor + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file