summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-05-04 16:54:15 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-05-04 16:54:15 -0400
commit9549aebd98ca8e352205f547a717ab12c659cd01 (patch)
tree1f11eabc19d8ec0fc6e75f2a69a109b6e86c152f /.github
parent529419e71f496fcf6274ebdb4af96905314b5e7f (diff)
parent8698127dbd17b47d1d07e35bee3725fecb69670b (diff)
downloadpython-setuptools-git-9549aebd98ca8e352205f547a717ab12c659cd01.tar.gz
Merge https://github.com/jaraco/skeleton
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml8
-rw-r--r--.github/workflows/automerge.yml27
2 files changed, 8 insertions, 27 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 00000000..89ff3396
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,8 @@
+version: 2
+updates:
+ - package-ecosystem: "pip"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ allow:
+ - dependency-type: "all"
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml
deleted file mode 100644
index 4f70acfb..00000000
--- a/.github/workflows/automerge.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-name: automerge
-on:
- pull_request:
- types:
- - labeled
- - unlabeled
- - synchronize
- - opened
- - edited
- - ready_for_review
- - reopened
- - unlocked
- pull_request_review:
- types:
- - submitted
- check_suite:
- types:
- - completed
- status: {}
-jobs:
- automerge:
- runs-on: ubuntu-latest
- steps:
- - name: automerge
- uses: "pascalgn/automerge-action@v0.12.0"
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"