Skip to content

Commit

Permalink
Use less resources (#215)
Browse files Browse the repository at this point in the history
* Set new interval time

* Exclude dependabot for some actions
  • Loading branch information
klaasnicolaas authored Sep 26, 2022
1 parent 7c18be0 commit 7b6fe11
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ updates:
directory: "/"
schedule:
interval: daily
time: "04:00"
time: "03:00"
- package-ecosystem: pip
directory: "/.github/workflows"
schedule:
interval: daily
time: "04:00"
time: "03:00"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
time: "04:00"
time: "03:00"
1 change: 1 addition & 0 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
precommit:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
strategy:
matrix:
include:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
pr_labels:
name: Verify
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: 🏷 Verify PR has a valid label
uses: jesusvasquez333/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/typing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
mypy:
name: mypy on Python ${{ matrix.python }}
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
strategy:
matrix:
python: ["3.9", "3.10"]
Expand Down

0 comments on commit 7b6fe11

Please sign in to comment.