Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
interval: "daily"
open-pull-requests-limit: 2 # <- default is 5
groups: # <- group all github actions updates in a single PR
# 1. development-dependencies are auto-merged
Expand All @@ -29,8 +28,7 @@ updates:
# 4. other dependencies require a manual merge
directory: "/"
schedule:
interval: "weekly"
day: "friday"
interval: "daily"
open-pull-requests-limit: 4
groups:
development-dependencies:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,6 @@ jobs:
name: Auto-approve PR
run: gh pr review --approve "$PR_URL"
-
# TODO: should wait for all workflows to complete before merging
name: Auto-merge PR
run: gh pr merge --auto --rebase "$PR_URL"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ on:

jobs:
test:
uses: go-openapi/ci-workflow/.github/workflows/go-test.yml@master
uses: go-openapi/ci-workflows/.github/workflows/go-test.yml@master
secrets: inherit
```

It is recommended to pin the git ref `master` with a commit sha, and let dependabot keep you up to date. Like so:

```yaml
uses: go-openapi/ci-workflow/.github/workflows/go-test.yml@b28a8b978a5ee5b7f4241ffafd6cc6163edb5dfd # v0.1.0
uses: go-openapi/ci-workflows/.github/workflows/go-test.yml@b28a8b978a5ee5b7f4241ffafd6cc6163edb5dfd # v0.1.0
```

### Permissions
Expand Down