Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/YOURLS/YOURLS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLéo Colombaro <git@colombaro.fr>2021-09-15 01:30:50 +0300
committerLéo Colombaro <git@colombaro.fr>2021-09-15 01:30:50 +0300
commitabe730c2322883ae3a0fa88ede3e856136789859 (patch)
tree22459ac33769df5b2bab0e13a2f71ab30fe67cfb
parent1c3438517db32c2b47c9a54009ce6f8778e26cdd (diff)
Enable auto-merge for dependabot
-rw-r--r--.github/workflows/dependabot.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
new file mode 100644
index 00000000..083bff37
--- /dev/null
+++ b/.github/workflows/dependabot.yml
@@ -0,0 +1,34 @@
+# https://docs.github.com/actions
+
+name: Dependabot
+
+on: pull_request_target
+
+permissions:
+ pull-requests: write
+ contents: write
+
+jobs:
+ dependabot:
+ name: Auto-merge
+ runs-on: ubuntu-latest
+ if: ${{ github.actor == 'dependabot[bot]' }}
+ steps:
+ - name: Dependabot metadata
+ id: dependabot-metadata
+ uses: dependabot/fetch-metadata@v1.1.1
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Approve a PR
+ if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major'
+ run: gh pr review --approve "$PR_URL"
+ env:
+ PR_URL: ${{ github.event.pull_request.html_url }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Enable auto-merge for Dependabot PRs
+ run: gh pr merge --auto "$PR_URL"
+ env:
+ PR_URL: ${{ github.event.pull_request.html_url }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}