We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bed734 commit e0214bdCopy full SHA for e0214bd
.github/dependabot.yml
@@ -0,0 +1,10 @@
1
+---
2
+version: 2
3
+updates:
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: weekly
8
+ open-pull-requests-limit: 3
9
+ labels:
10
+ - "skip-changelog"
.github/workflows/tox.yml
@@ -83,3 +83,14 @@ jobs:
83
pip install tox
84
- name: Test
85
run: "tox -e ${{ matrix.tox_env }}"
86
+
87
+ check: # This job does nothing and is only used for the branch protection
88
+ if: always()
89
+ needs:
90
+ - build
91
+ runs-on: ubuntu-latest
92
+ steps:
93
+ - name: Decide whether the needed jobs succeeded or failed
94
+ uses: re-actors/alls-green@release/v1
95
+ with:
96
+ jobs: ${{ toJSON(needs) }}
0 commit comments