Skip to content

Commit e0214bd

Browse files
authored
GHA maintenance (#96)
1 parent 0bed734 commit e0214bd

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -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

+11
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,14 @@ jobs:
8383
pip install tox
8484
- name: Test
8585
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

Comments
 (0)