Skip to content

Commit

Permalink
repo: update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbellone committed Apr 19, 2024
1 parent 82a1517 commit 0e714c1
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 11 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: gomod
directory: /
schedule:
interval: daily
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
18 changes: 18 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- help wanted
- enhancement
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue 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.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
24 changes: 16 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
name: ci
permissions:
contents: read
on:
push:
branches:
- master
pull_request:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.go }}
strategy:
matrix:
go: [ '1.17', 'stable', 'oldstable' ]
name: Go ${{ matrix.go }}
go: [1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
Expand All @@ -19,4 +18,13 @@ jobs:
- run: |
go version
go build ./...
go test ./...
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
check-latest: true
- run: |
go version
go test ./...
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,5 @@ func main() {
}
```

## License
`grpc-middleware-sentry` is released under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details.

[0]: https://github.com/grpc-ecosystem/go-grpc-middleware
[1]: https://sentry.io

0 comments on commit 0e714c1

Please sign in to comment.