Skip to content

Commit

Permalink
chore(github): tune stale and dependabot settings (#967)
Browse files Browse the repository at this point in the history
* chore(github): tune stale and dependabot settings

* chore: run go tests whenever go.sum changes

* chore: run e2e tests on go.sum change
  • Loading branch information
lklimek authored Nov 4, 2024
1 parent 878f270 commit 0225d04
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ updates:
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
open-pull-requests-limit: 5
# - package-ecosystem: npm
# directory: "/docs"
# schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
paths:
- "**Dockerfile"
- "**.go"
- "go.sum"
push:
branches:
- master
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions."
stale-pr-message:
"This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions."
days-before-stale: -1
days-before-close: -1
days-before-pr-stale: 10
days-before-pr-close: 4
days-before-pr-stale: 31
days-before-pr-close: 16
exempt-pr-labels: "S:wip"
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- "**.go"
- "go.sum"
push:
branches:
- master
Expand Down

0 comments on commit 0225d04

Please sign in to comment.