content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
# Do not delete linter settings. Linters like gocritic can be enabled on the command line.\n\nlinters-settings:\n depguard:\n rules:\n prevent_unmaintained_packages:\n list-mode: strict\n files:\n - $all\n - "!$test"\n allow:\n - $gostd\n - github.com/x448/float16\n deny:\n - pkg: io/ioutil\n desc: "replaced by io and os packages since Go 1.16: https://tip.golang.org/doc/go1.16#ioutil"\n dupl:\n threshold: 100\n funlen:\n lines: 100\n statements: 50\n goconst:\n ignore-tests: true\n min-len: 2\n min-occurrences: 3\n gocritic:\n enabled-tags:\n - diagnostic\n - experimental\n - opinionated\n - performance\n - style\n disabled-checks:\n - commentedOutCode\n - dupImport # https://github.com/go-critic/go-critic/issues/845\n - ifElseChain\n - octalLiteral\n - paramTypeCombine\n - whyNoLint\n gofmt:\n simplify: false\n goimports:\n local-prefixes: github.com/fxamacker/cbor\n golint:\n min-confidence: 0\n govet:\n check-shadowing: true\n lll:\n line-length: 140\n maligned:\n suggest-new: true\n misspell:\n locale: US\n staticcheck:\n checks: ["all"]\n\nlinters:\n disable-all: true\n enable:\n - asciicheck\n - bidichk\n - depguard\n - errcheck\n - exportloopref\n - goconst\n - gocritic\n - gocyclo\n - gofmt\n - goimports\n - goprintffuncname\n - gosec\n - gosimple\n - govet\n - ineffassign\n - misspell\n - nilerr\n - revive\n - staticcheck\n - stylecheck\n - typecheck\n - unconvert\n - unused\n\nissues:\n # max-issues-per-linter default is 50. Set to 0 to disable limit.\n max-issues-per-linter: 0\n # max-same-issues default is 3. Set to 0 to disable limit.\n max-same-issues: 0\n\n exclude-rules:\n - path: decode.go\n text: "string ` overflows ` has (\\d+) occurrences, make it a constant"\n - path: decode.go\n text: "string ` \\(range is \\[` has (\\d+) occurrences, make it a constant"\n - path: decode.go\n text: "string `, ` has (\\d+) occurrences, make it a constant"\n - path: decode.go\n text: "string ` overflows Go's int64` has (\\d+) occurrences, make it a constant"\n - path: decode.go\n text: "string `\\]\\)` has (\\d+) occurrences, make it a constant"\n - path: valid.go\n text: "string ` for type ` has (\\d+) occurrences, make it a constant"\n - path: valid.go\n text: "string `cbor: ` has (\\d+) occurrences, make it a constant"\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\fxamacker\cbor\v2\.golangci.yml | .golangci.yml | YAML | 2,505 | 0.95 | 0.009615 | 0.03 | awesome-app | 908 | 2023-09-19T06:17:37.468865 | MIT | false | b4b3f828106d5df762e93a8f2c659fe3 |
# Notes:\n# - Minimal appveyor.yml file is an empty file. All sections are optional.\n# - Indent each level of configuration with 2 spaces. Do not use tabs!\n# - All section names are case-sensitive.\n# - Section names should be unique on each level.\n\nversion: "1.3.0.{build}-alpha-{branch}"\n\nos: Visual Studio 2019\n\nbuild: off\n\nskip_tags: true\n\nclone_folder: c:\gopath\src\github.com\go-ole\go-ole\n\nenvironment:\n GOPATH: c:\gopath\n GOROOT: c:\go\n DOWNLOADPLATFORM: "x64"\n\nbefore_test:\n # - Download COM Server\n - ps: Start-FileDownload "https://github.com/go-ole/test-com-server/releases/download/v1.0.2/test-com-server-${env:DOWNLOADPLATFORM}.zip"\n - 7z e test-com-server-%DOWNLOADPLATFORM%.zip -oc:\gopath\src\github.com\go-ole\go-ole > NUL\n - c:\gopath\src\github.com\go-ole\go-ole\build\register-assembly.bat\n\ntest_script:\n - go test -v -cover ./...\n # go vet has false positives on unsafe.Pointer with windows/sys. Disabling since it is recommended to use go test instead.\n # - go vet ./...\n\nbranches:\n only:\n - master\n - v1.2\n - v1.1\n - v1.0\n\nmatrix:\n allow_failures:\n - environment:\n GOROOT: C:\go-x86\n DOWNLOADPLATFORM: "x86"\n - environment:\n GOROOT: C:\go118\n DOWNLOADPLATFORM: "x64"\n - environment:\n GOROOT: C:\go118-x86\n DOWNLOADPLATFORM: "x86"\n\ninstall:\n - go version\n - go env\n - go get -u golang.org/x/tools/cmd/cover\n - go get -u golang.org/x/tools/cmd/godoc\n - go get -u golang.org/x/tools/cmd/stringer\n\nbuild_script:\n - cd c:\gopath\src\github.com\go-ole\go-ole\n - go get -v -t ./...\n - go build\n\n# disable automatic tests\ntest: on\n\n# disable deployment\ndeploy: off\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\go-ole\go-ole\appveyor.yml | appveyor.yml | YAML | 1,659 | 0.8 | 0 | 0.185185 | react-lib | 185 | 2024-04-19T13:28:07.891785 | Apache-2.0 | false | 05a2874a338ceecd3807d54654cab2f5 |
linters-settings:\n govet:\n check-shadowing: true\n golint:\n min-confidence: 0\n gocyclo:\n min-complexity: 45\n maligned:\n suggest-new: true\n dupl:\n threshold: 200\n goconst:\n min-len: 2\n min-occurrences: 3\n\nlinters:\n enable-all: true\n disable:\n - maligned\n - unparam\n - lll\n - gochecknoinits\n - gochecknoglobals\n - funlen\n - godox\n - gocognit\n - whitespace\n - wsl\n - wrapcheck\n - testpackage\n - nlreturn\n - gomnd\n - exhaustivestruct\n - goerr113\n - errorlint\n - nestif\n - godot\n - gofumpt\n - paralleltest\n - tparallel\n - thelper\n - ifshort\n - exhaustruct\n - varnamelen\n - gci\n - depguard\n - errchkjson\n - inamedparam\n - nonamedreturns\n - musttag\n - ireturn\n - forcetypeassert\n - cyclop\n # deprecated linters\n - deadcode\n - interfacer\n - scopelint\n - varcheck\n - structcheck\n - golint\n - nosnakecase\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\go-openapi\jsonpointer\.golangci.yml | .golangci.yml | YAML | 952 | 0.8 | 0 | 0.016667 | vue-tools | 617 | 2024-06-27T12:01:11.004693 | BSD-3-Clause | false | 5fa10422ff35ead3a43c944de0f814b8 |
linters-settings:\n govet:\n check-shadowing: true\n golint:\n min-confidence: 0\n gocyclo:\n min-complexity: 45\n maligned:\n suggest-new: true\n dupl:\n threshold: 200\n goconst:\n min-len: 2\n min-occurrences: 3\n\nlinters:\n enable-all: true\n disable:\n - maligned\n - unparam\n - lll\n - gochecknoinits\n - gochecknoglobals\n - funlen\n - godox\n - gocognit\n - whitespace\n - wsl\n - wrapcheck\n - testpackage\n - nlreturn\n - gomnd\n - exhaustivestruct\n - goerr113\n - errorlint\n - nestif\n - godot\n - gofumpt\n - paralleltest\n - tparallel\n - thelper\n - ifshort\n - exhaustruct\n - varnamelen\n - gci\n - depguard\n - errchkjson\n - inamedparam\n - nonamedreturns\n - musttag\n - ireturn\n - forcetypeassert\n - cyclop\n # deprecated linters\n - deadcode\n - interfacer\n - scopelint\n - varcheck\n - structcheck\n - golint\n - nosnakecase\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\go-openapi\jsonreference\.golangci.yml | .golangci.yml | YAML | 952 | 0.8 | 0 | 0.016667 | awesome-app | 521 | 2023-12-08T08:43:04.818484 | MIT | false | 5fa10422ff35ead3a43c944de0f814b8 |
linters-settings:\n govet:\n check-shadowing: true\n golint:\n min-confidence: 0\n gocyclo:\n min-complexity: 45\n maligned:\n suggest-new: true\n dupl:\n threshold: 200\n goconst:\n min-len: 3\n min-occurrences: 3\n\nlinters:\n enable-all: true\n disable:\n - maligned\n - lll\n - gochecknoinits\n - gochecknoglobals\n - funlen\n - godox\n - gocognit\n - whitespace\n - wsl\n - wrapcheck\n - testpackage\n - nlreturn\n - gomnd\n - exhaustivestruct\n - goerr113\n - errorlint\n - nestif\n - godot\n - gofumpt\n - paralleltest\n - tparallel\n - thelper\n - ifshort\n - exhaustruct\n - varnamelen\n - gci\n - depguard\n - errchkjson\n - inamedparam\n - nonamedreturns\n - musttag\n - ireturn\n - forcetypeassert\n - cyclop\n # deprecated linters\n - deadcode\n - interfacer\n - scopelint\n - varcheck\n - structcheck\n - golint\n - nosnakecase\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\go-openapi\swag\.golangci.yml | .golangci.yml | YAML | 938 | 0.8 | 0 | 0.016949 | awesome-app | 372 | 2024-08-24T12:16:11.761918 | BSD-3-Clause | false | dcda4b54bcc479ea779a67ad36b2e017 |
# https://taskfile.dev\n\nversion: '3'\n\ntasks:\n default:\n cmds:\n - task: test\n\n test:\n cmds:\n - go test -v .\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\go-task\slim-sprig\v3\Taskfile.yml | Taskfile.yml | YAML | 125 | 0.8 | 0 | 0.111111 | python-kit | 385 | 2023-08-22T16:08:10.168484 | GPL-3.0 | false | 58dbf247108a336db7442215dc65b092 |
freebsd_instance:\n image_family: freebsd-13-0\n\ntask:\n name: Test on FreeBSD\n install_script: pkg install -y go119 dbus\n test_script: |\n /usr/local/etc/rc.d/dbus onestart && \\n eval `dbus-launch --sh-syntax` && \\n go119 test -v ./...\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\godbus\dbus\v5\.cirrus.yml | .cirrus.yml | YAML | 246 | 0.7 | 0 | 0 | react-lib | 502 | 2023-07-30T07:32:58.023185 | BSD-3-Clause | false | db74b3a3776afda9e8542a0a1aefa517 |
# For documentation, see https://golangci-lint.run/usage/configuration/\n\nlinters:\n enable:\n - gofumpt\n - unconvert\n - unparam\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\godbus\dbus\v5\.golangci.yml | .golangci.yml | YAML | 136 | 0.8 | 0 | 0.166667 | node-utils | 503 | 2023-12-28T11:40:30.369142 | Apache-2.0 | false | 06fa05ff617b316f2a9ba1c87273cbec |
run:\n timeout: 10m\n\nlinters:\n enable:\n - asasalint\n - bidichk\n - dogsled\n - dupword\n - durationcheck\n - err113\n - errname\n - errorlint\n - fatcontext\n - forbidigo\n - gocheckcompilerdirectives\n - gochecknoinits\n - gocritic\n - godot\n - godox\n - gofumpt\n - goheader\n - goimports\n - gomoddirectives\n - goprintffuncname\n - gosec\n - inamedparam\n - interfacebloat\n - ireturn\n - mirror\n - misspell\n - nolintlint\n - revive\n - stylecheck\n - tenv\n - testifylint\n - thelper\n - unconvert\n - unparam\n - usestdlibvars\n - whitespace\n\nlinters-settings:\n misspell:\n locale: US\n godox:\n keywords:\n - FIXME\n goheader:\n template: |-\n Copyright 2015 Tim Heckman. All rights reserved.\n Copyright 2018-{{ YEAR }} The Gofrs. All rights reserved.\n Use of this source code is governed by the BSD 3-Clause\n license that can be found in the LICENSE file.\n gofumpt:\n extra-rules: true\n gocritic:\n enabled-tags:\n - diagnostic\n - style\n - performance\n disabled-checks:\n - paramTypeCombine # already handle by gofumpt.extra-rules\n - whyNoLint # already handle by nonolint\n - unnamedResult\n - hugeParam\n - sloppyReassign\n - rangeValCopy\n - octalLiteral\n - ptrToRefParam\n - appendAssign\n - ruleguard\n - httpNoBody\n - exposedSyncMutex\n\n revive:\n rules:\n - name: struct-tag\n - name: blank-imports\n - name: context-as-argument\n - name: context-keys-type\n - name: dot-imports\n - name: error-return\n - name: error-strings\n - name: error-naming\n - name: exported\n - name: if-return\n - name: increment-decrement\n - name: var-naming\n - name: var-declaration\n - name: package-comments\n - name: range\n - name: receiver-naming\n - name: time-naming\n - name: unexported-return\n - name: indent-error-flow\n - name: errorf\n - name: empty-block\n - name: superfluous-else\n - name: unused-parameter\n - name: unreachable-code\n - name: redefines-builtin-id\n\nissues:\n exclude-use-default: true\n max-issues-per-linter: 0\n max-same-issues: 0\n\noutput:\n show-stats: true\n sort-results: true\n sort-order:\n - linter\n - file\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\gofrs\flock\.golangci.yml | .golangci.yml | YAML | 2,334 | 0.95 | 0.008772 | 0 | python-kit | 478 | 2024-09-23T19:53:17.613947 | MIT | false | 8529b025df91db9ad95f964d5970fb5b |
language: go\n\ngo:\n - 1.11.x\n - 1.12.x\n - 1.13.x\n - master\n\nscript:\n - go test -cover\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\google\gofuzz\.travis.yml | .travis.yml | YAML | 90 | 0.5 | 0 | 0 | node-utils | 481 | 2024-10-16T12:55:03.900006 | Apache-2.0 | false | 2f2b8d7e02a91b017cb8a816b4ef5639 |
sudo: false\nlanguage: go\n# * github.com/grpc/grpc-go still supports go1.6\n# - When we drop support for go1.6 we can remove golang.org/x/net/context\n# below as it is part of the Go std library since go1.7\n# * github.com/prometheus/client_golang already requires at least go1.7 since\n# September 2017\ngo:\n - 1.6.x\n - 1.7.x\n - 1.8.x\n - 1.9.x\n - 1.10.x\n - master\n\ninstall:\n - go get github.com/prometheus/client_golang/prometheus\n - go get google.golang.org/grpc\n - go get golang.org/x/net/context\n - go get github.com/stretchr/testify\nscript:\n - make test \n\nafter_success:\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\grpc-ecosystem\go-grpc-prometheus\.travis.yml | .travis.yml | YAML | 632 | 0.95 | 0.04 | 0.217391 | react-lib | 506 | 2023-12-08T20:41:11.182940 | BSD-3-Clause | false | 4f18ef0435813ea32813fc8dce7d3930 |
language: go\n\nsudo: false\n\ngo:\n - 1.5.x\n - 1.6.x\n - 1.7.x\n - 1.8.x\n - 1.9.x\n - 1.10.x\n - 1.11.x\n - 1.12.x\n - 1.13.x\n - 1.14.x\n - 1.15.x\n - tip\n\nallow_failures:\n - go: tip\n\nscript: make build\n\nmatrix:\n include:\n - language: go\n go: 1.15.x\n script: make test\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\jmespath\go-jmespath\.travis.yml | .travis.yml | YAML | 284 | 0.7 | 0 | 0 | node-utils | 838 | 2024-11-26T10:25:15.505132 | BSD-3-Clause | false | c10582a21d458300b2c0ed923ffc7f38 |
language: go\n\ngo:\n - 1.8.x\n - 1.x\n\nbefore_install:\n - go get -t -v ./...\n\nscript:\n - ./test.sh\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\json-iterator\go\.travis.yml | .travis.yml | YAML | 159 | 0.8 | 0 | 0 | awesome-app | 512 | 2024-12-16T21:28:24.870649 | Apache-2.0 | false | 529e0253c40224d4a96e059257ea55d1 |
sudo: false\nlanguage: go\ngo:\n - 1.7.x\n - 1.8.x\n - 1.9.x\n - 1.10.x\n - 1.11.x\n - 1.12.x\n - 1.13.x\n - master\nbefore_install:\n - go get github.com/mattn/goveralls\nscript:\n - go test -v -covermode=count -coverprofile=coverage.out\n - go vet ./...\n - test -z "$(gofmt -d -s . | tee /dev/stderr)"\n - $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\julienschmidt\httprouter\.travis.yml | .travis.yml | YAML | 379 | 0.7 | 0 | 0 | react-lib | 123 | 2023-07-24T08:01:39.943302 | Apache-2.0 | false | fcf6a304660d7433ea6f0afd114793fa |
version: 2\n\nbefore:\n hooks:\n - ./gen.sh\n\nbuilds:\n -\n id: "s2c"\n binary: s2c\n main: ./s2/cmd/s2c/main.go\n flags:\n - -trimpath\n env:\n - CGO_ENABLED=0\n goos:\n - aix\n - linux\n - freebsd\n - netbsd\n - windows\n - darwin\n goarch:\n - 386\n - amd64\n - arm\n - arm64\n - ppc64\n - ppc64le\n - mips64\n - mips64le\n goarm:\n - 7\n -\n id: "s2d"\n binary: s2d\n main: ./s2/cmd/s2d/main.go\n flags:\n - -trimpath\n env:\n - CGO_ENABLED=0\n goos:\n - aix\n - linux\n - freebsd\n - netbsd\n - windows\n - darwin\n goarch:\n - 386\n - amd64\n - arm\n - arm64\n - ppc64\n - ppc64le\n - mips64\n - mips64le\n goarm:\n - 7\n -\n id: "s2sx"\n binary: s2sx\n main: ./s2/cmd/_s2sx/main.go\n flags:\n - -modfile=s2sx.mod\n - -trimpath\n env:\n - CGO_ENABLED=0\n goos:\n - aix\n - linux\n - freebsd\n - netbsd\n - windows\n - darwin\n goarch:\n - 386\n - amd64\n - arm\n - arm64\n - ppc64\n - ppc64le\n - mips64\n - mips64le\n goarm:\n - 7\n\narchives:\n -\n id: s2-binaries\n name_template: "s2-{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"\n format_overrides:\n - goos: windows\n format: zip\n files:\n - unpack/*\n - s2/LICENSE\n - s2/README.md\nchecksum:\n name_template: 'checksums.txt'\nsnapshot:\n version_template: "{{ .Tag }}-next"\nchangelog:\n sort: asc\n filters:\n exclude:\n - '^doc:'\n - '^docs:'\n - '^test:'\n - '^tests:'\n - '^Update\sREADME.md'\n\nnfpms:\n -\n file_name_template: "s2_package__{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"\n vendor: Klaus Post\n homepage: https://github.com/klauspost/compress\n maintainer: Klaus Post <klauspost@gmail.com>\n description: S2 Compression Tool\n license: BSD 3-Clause\n formats:\n - deb\n - rpm\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\klauspost\compress\.goreleaser.yml | .goreleaser.yml | YAML | 1,993 | 0.8 | 0.01626 | 0 | node-utils | 751 | 2025-02-01T10:35:56.633268 | BSD-3-Clause | false | 4c251cbabf5814a458f8343c6698f393 |
language: go\n\ngo:\n - "1.8"\n - "1.9"\n - "1.10"\n - "1.11"\n - "1.12"\n - master\n\nscript: go test -v ./...\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\liggitt\tabwriter\.travis.yml | .travis.yml | YAML | 108 | 0.7 | 0 | 0 | python-kit | 203 | 2024-11-18T00:31:37.445779 | GPL-3.0 | false | 4634e4331e2597af0e37f47edb9a3c61 |
version: 2\njobs:\n build-go-latest:\n docker:\n - image: golang:latest\n working_directory: /go/src/github.com/gliderlabs/ssh\n steps:\n - checkout\n - run: go get\n - run: go test -v -race\n\n build-go-1.13:\n docker:\n - image: golang:1.13\n working_directory: /go/src/github.com/gliderlabs/ssh\n steps:\n - checkout\n - run: go get\n - run: go test -v -race\n\nworkflows:\n version: 2\n build:\n jobs:\n - build-go-latest\n - build-go-1.13\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\loft-sh\ssh\circle.yml | circle.yml | YAML | 478 | 0.7 | 0 | 0 | vue-tools | 325 | 2024-12-31T06:33:33.908229 | GPL-3.0 | false | 697a26c58f0905eea459ca08485da4ce |
arch:\n - amd64\n - ppc64le\nlanguage: go\nsudo: false\ngo:\n - tip\n\nbefore_install:\n - go get -t -v ./...\n\nscript:\n - ./go.test.sh\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\mattn\go-shellwords\.travis.yml | .travis.yml | YAML | 191 | 0.8 | 0 | 0 | react-lib | 917 | 2024-02-15T21:37:07.920922 | BSD-3-Clause | false | 21f123c1672a3cfa9c2035b859783cb0 |
linters:\n enable:\n # style\n - containedctx # struct contains a context\n - dupl # duplicate code\n - errname # erorrs are named correctly\n - nolintlint # "//nolint" directives are properly explained\n - revive # golint replacement\n - unconvert # unnecessary conversions\n - wastedassign\n\n # bugs, performance, unused, etc ...\n - contextcheck # function uses a non-inherited context\n - errorlint # errors not wrapped for 1.13\n - exhaustive # check exhaustiveness of enum switch statements\n - gofmt # files are gofmt'ed\n - gosec # security\n - nilerr # returns nil even with non-nil error\n - thelper # test helpers without t.Helper()\n - unparam # unused function params\n\nissues:\n exclude-dirs:\n - pkg/etw/sample\n\n exclude-rules:\n # err is very often shadowed in nested scopes\n - linters:\n - govet\n text: '^shadow: declaration of "err" shadows declaration'\n\n # ignore long lines for skip autogen directives\n - linters:\n - revive\n text: "^line-length-limit: "\n source: "^//(go:generate|sys) "\n\n #TODO: remove after upgrading to go1.18\n # ignore comment spacing for nolint and sys directives\n - linters:\n - revive\n text: "^comment-spacings: no space between comment delimiter and comment text"\n source: "//(cspell:|nolint:|sys |todo)"\n\n # not on go 1.18 yet, so no any\n - linters:\n - revive\n text: "^use-any: since GO 1.18 'interface{}' can be replaced by 'any'"\n\n # allow unjustified ignores of error checks in defer statements\n - linters:\n - nolintlint\n text: "^directive `//nolint:errcheck` should provide explanation"\n source: '^\s*defer '\n\n # allow unjustified ignores of error lints for io.EOF\n - linters:\n - nolintlint\n text: "^directive `//nolint:errorlint` should provide explanation"\n source: '[=|!]= io.EOF'\n\n\nlinters-settings:\n exhaustive:\n default-signifies-exhaustive: true\n govet:\n enable-all: true\n disable:\n # struct order is often for Win32 compat\n # also, ignore pointer bytes/GC issues for now until performance becomes an issue\n - fieldalignment\n nolintlint:\n require-explanation: true\n require-specific: true\n revive:\n # revive is more configurable than static check, so likely the preferred alternative to static-check\n # (once the perf issue is solved: https://github.com/golangci/golangci-lint/issues/2997)\n enable-all-rules:\n true\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md\n rules:\n # rules with required arguments\n - name: argument-limit\n disabled: true\n - name: banned-characters\n disabled: true\n - name: cognitive-complexity\n disabled: true\n - name: cyclomatic\n disabled: true\n - name: file-header\n disabled: true\n - name: function-length\n disabled: true\n - name: function-result-limit\n disabled: true\n - name: max-public-structs\n disabled: true\n # geneally annoying rules\n - name: add-constant # complains about any and all strings and integers\n disabled: true\n - name: confusing-naming # we frequently use "Foo()" and "foo()" together\n disabled: true\n - name: flag-parameter # excessive, and a common idiom we use\n disabled: true\n - name: unhandled-error # warns over common fmt.Print* and io.Close; rely on errcheck instead\n disabled: true\n # general config\n - name: line-length-limit\n arguments:\n - 140\n - name: var-naming\n arguments:\n - []\n - - CID\n - CRI\n - CTRD\n - DACL\n - DLL\n - DOS\n - ETW\n - FSCTL\n - GCS\n - GMSA\n - HCS\n - HV\n - IO\n - LCOW\n - LDAP\n - LPAC\n - LTSC\n - MMIO\n - NT\n - OCI\n - PMEM\n - PWSH\n - RX\n - SACl\n - SID\n - SMB\n - TX\n - VHD\n - VHDX\n - VMID\n - VPCI\n - WCOW\n - WIM\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\Microsoft\go-winio\.golangci.yml | .golangci.yml | YAML | 4,244 | 0.95 | 0.07483 | 0.124088 | node-utils | 60 | 2025-02-10T17:43:17.461609 | GPL-3.0 | false | e405f16ead7265060bf0440aadff79a8 |
coverage:\n status:\n project:\n default:\n target: 40%\n threshold: null\n patch: false\n changes: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\miekg\dns\.codecov.yml | .codecov.yml | YAML | 128 | 0.7 | 0 | 0 | node-utils | 476 | 2025-02-08T09:54:43.232433 | Apache-2.0 | false | 22d35c24044b1bdaea9843dc479fb7cd |
language: go\n\ngo:\n - 1.8.x\n - 1.x\n\nbefore_install:\n - go get -t -v ./...\n\nscript:\n - ./test.sh\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\modern-go\concurrent\.travis.yml | .travis.yml | YAML | 159 | 0.8 | 0 | 0 | vue-tools | 594 | 2025-06-26T17:24:26.334288 | GPL-3.0 | false | 529e0253c40224d4a96e059257ea55d1 |
language: go\n\ngo:\n - 1.9.x\n - 1.x\n\nbefore_install:\n - go get -t -v ./...\n - go get -t -v github.com/modern-go/reflect2-tests/...\n\nscript:\n - ./test.sh\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\modern-go\reflect2\.travis.yml | .travis.yml | YAML | 216 | 0.8 | 0 | 0 | awesome-app | 582 | 2025-03-22T00:18:29.862795 | MIT | false | 12fca2ab15a8f10085fd6330c85dd4f1 |
run:\n tests: false\n\nissues:\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - dupl\n - exportloopref\n - goconst\n - godot\n - godox\n - goimports\n - golint\n - goprintffuncname\n - gosec\n - ifshort\n - misspell\n - prealloc\n - rowserrcheck\n - sqlclosecheck\n - unconvert\n - unparam\n - whitespace\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\muesli\ansi\.golangci.yml | .golangci.yml | YAML | 376 | 0.85 | 0 | 0 | node-utils | 959 | 2024-10-11T09:35:18.462256 | Apache-2.0 | false | ae3ae4691eca4c7ea81408c2ff63cbe6 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n # - dupl\n - exhaustive\n # - exhaustivestruct\n - goconst\n - godot\n - godox\n - gomnd\n - gomoddirectives\n - goprintffuncname\n - ifshort\n # - lll\n - misspell\n - nakedret\n - nestif\n - noctx\n - nolintlint\n - prealloc\n - wrapcheck\n\n # disable default linters, they are already enabled in .golangci.yml\n disable:\n - deadcode\n - errcheck\n - gosimple\n - govet\n - ineffassign\n - staticcheck\n - structcheck\n - typecheck\n - unused\n - varcheck\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\muesli\cancelreader\.golangci-soft.yml | .golangci-soft.yml | YAML | 696 | 0.8 | 0 | 0.093023 | vue-tools | 522 | 2025-04-12T06:03:26.637410 | BSD-3-Clause | false | 3c5c67b803f54b20e099c09faaefa787 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - exportloopref\n - goimports\n - gosec\n - nilerr\n - predeclared\n - revive\n - rowserrcheck\n - sqlclosecheck\n - tparallel\n - unconvert\n - unparam\n - whitespace\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\muesli\cancelreader\.golangci.yml | .golangci.yml | YAML | 389 | 0.85 | 0 | 0 | react-lib | 935 | 2025-06-10T21:12:54.798492 | Apache-2.0 | false | b9f89c65f4f6ecf49fd60c797e1f598e |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n # - dupl\n - exhaustive\n # - exhaustivestruct\n - goconst\n - godot\n - godox\n - gomnd\n - gomoddirectives\n - goprintffuncname\n - ifshort\n # - lll\n - misspell\n - nakedret\n - nestif\n - noctx\n - nolintlint\n - prealloc\n - wrapcheck\n\n # disable default linters, they are already enabled in .golangci.yml\n disable:\n - deadcode\n - errcheck\n - gosimple\n - govet\n - ineffassign\n - staticcheck\n - structcheck\n - typecheck\n - unused\n - varcheck\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\muesli\termenv\.golangci-soft.yml | .golangci-soft.yml | YAML | 696 | 0.8 | 0 | 0.093023 | awesome-app | 888 | 2025-03-09T12:25:56.469459 | Apache-2.0 | false | 3c5c67b803f54b20e099c09faaefa787 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - exportloopref\n - goimports\n - gosec\n - nilerr\n - predeclared\n - revive\n - rowserrcheck\n - sqlclosecheck\n - tparallel\n - unconvert\n - unparam\n - whitespace\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\muesli\termenv\.golangci.yml | .golangci.yml | YAML | 389 | 0.85 | 0 | 0 | awesome-app | 147 | 2025-03-08T03:46:22.653264 | Apache-2.0 | false | b9f89c65f4f6ecf49fd60c797e1f598e |
language: go\ngo:\n - 1.x\n - tip\nenv:\n - GO111MODULE=on\ninstall:\n - go mod download\nscript:\n - go test -race -v\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\NYTimes\gziphandler\.travis.yml | .travis.yml | YAML | 115 | 0.7 | 0 | 0 | node-utils | 196 | 2023-09-26T06:42:39.768258 | MIT | false | 5ebc04ffe2cd87d7521e48519ad461ad |
language: go\narch:\n - ppc64le\n - amd64\ngo:\n - 1.3\n - 1.4\n - 1.5\n - 1.6\n - 1.7\n - 1.8\n - 1.9\n - "1.10"\n - tip\njobs:\n exclude :\n - arch : ppc64le\n go :\n - 1.3\n - arch : ppc64le\n go :\n - 1.4\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\olekukonko\tablewriter\.travis.yml | .travis.yml | YAML | 230 | 0.7 | 0 | 0 | node-utils | 265 | 2024-10-03T14:10:37.042705 | MIT | false | 63db4133c746208e7326d8423c466de0 |
version: 2\n\nrequirements:\n signed_off_by:\n required: true\n\nalways_pending:\n title_regex: '^WIP'\n explanation: 'Work in progress...'\n\ngroup_defaults:\n required: 2\n approve_by_comment:\n enabled: true\n approve_regex: '^LGTM'\n reject_regex: '^Rejected'\n reset_on_push:\n enabled: true\n author_approval:\n ignored: true\n conditions:\n branches:\n - master\n\ngroups:\n go-digest:\n teams:\n - go-digest-maintainers\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\opencontainers\go-digest\.pullapprove.yml | .pullapprove.yml | YAML | 444 | 0.85 | 0 | 0 | node-utils | 164 | 2024-02-05T08:39:41.117329 | GPL-3.0 | false | 14724ba5e883bd436d3e4bdc9b2da32f |
language: go\n\nbefore_install:\n - go get golang.org/x/tools/cmd/cover\n - go get github.com/mattn/goveralls\n\nscript:\n- go test -bench=. -benchmem -timeout 10m -coverprofile coverage.out\n- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN\n- go test -bench=Random -benchtime 5m -timeout 30m -benchmem -coverprofile coverage.out\n\ngo: "1.11"\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\PaesslerAG\gval\.travis.yml | .travis.yml | YAML | 389 | 0.7 | 0 | 0 | react-lib | 299 | 2023-12-08T09:51:48.891317 | Apache-2.0 | false | b1913100ac7e0c4262d7e445aca8f855 |
language: go\ngo_import_path: github.com/pkg/errors\ngo:\n - 1.11.x\n - 1.12.x\n - 1.13.x\n - tip\n\nscript:\n - make check\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\pkg\errors\.travis.yml | .travis.yml | YAML | 120 | 0.85 | 0 | 0 | vue-tools | 637 | 2025-02-06T04:55:37.730431 | BSD-3-Clause | false | 013ec5d03637d40fe7aa3ff7cd8fe397 |
version: build-{build}.{branch}\n\nclone_folder: C:\gopath\src\github.com\pkg\errors\nshallow_clone: true # for startup speed\n\nenvironment:\n GOPATH: C:\gopath\n\nplatform:\n - x64\n\n# http://www.appveyor.com/docs/installed-software\ninstall:\n # some helpful output for debugging builds\n - go version\n - go env\n # pre-installed MinGW at C:\MinGW is 32bit only\n # but MSYS2 at C:\msys64 has mingw64\n - set PATH=C:\msys64\mingw64\bin;%PATH%\n - gcc --version\n - g++ --version\n\nbuild_script:\n - go install -v ./...\n\ntest_script:\n - set PATH=C:\gopath\bin;%PATH%\n - go test -v ./...\n\n#artifacts:\n# - path: '%GOPATH%\bin\*.exe'\ndeploy: off\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\pkg\errors\appveyor.yml | appveyor.yml | YAML | 639 | 0.8 | 0.0625 | 0.24 | awesome-app | 135 | 2024-03-04T00:08:57.835175 | MIT | false | ac604682013b1f47468e7bd7d39ca3d6 |
---\nlinters:\n enable:\n - errcheck\n - godot\n - gosimple\n - govet\n - ineffassign\n - misspell\n - revive\n - staticcheck\n - testifylint\n - unused\n\nlinter-settings:\n godot:\n capital: true\n exclude:\n # Ignore "See: URL"\n - 'See:'\n misspell:\n locale: US\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\prometheus\procfs\.golangci.yml | .golangci.yml | YAML | 274 | 0.8 | 0 | 0.047619 | python-kit | 152 | 2023-11-07T18:09:30.715905 | BSD-3-Clause | false | 0fe75c11ba3d1064c365a9c1fee9dc00 |
---\nlinters:\n enable:\n - misspell\n - revive\n\nissues:\n exclude-rules:\n - path: _test.go\n linters:\n - errcheck\n\nlinters-settings:\n revive:\n rules:\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unused-parameter\n - name: unused-parameter\n severity: warning\n disabled: true\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\prometheus-community\pro-bing\.golangci.yml | .golangci.yml | YAML | 333 | 0.8 | 0 | 0.058824 | python-kit | 28 | 2025-03-09T04:14:58.228358 | BSD-3-Clause | false | dd06031a3a10158650c6db7a00264e36 |
linters:\n disable:\n - gosimple\n - unused\n enable:\n - gci\n - gofmt\n - misspell\nlinters-settings:\n gci:\n sections:\n - standard\n - default\n - prefix(github.com/safchain/ethtool)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\safchain\ethtool\.golangci.yml | .golangci.yml | YAML | 211 | 0.7 | 0 | 0 | node-utils | 255 | 2025-05-14T02:11:38.514277 | GPL-3.0 | false | 0f576c12a54d89a105c51ef98790da59 |
run:\n # do not run on test files yet\n tests: false\n\n# all available settings of specific linters\nlinters-settings:\n errcheck:\n # report about not checking of errors in type assetions: `a := b.(MyStruct)`;\n # default is false: such cases aren't reported by default.\n check-type-assertions: false\n\n # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;\n # default is false: such cases aren't reported by default.\n check-blank: false\n\n lll:\n line-length: 100\n tab-width: 4\n\n prealloc:\n simple: false\n range-loops: false\n for-loops: false\n\n whitespace:\n multi-if: false # Enforces newlines (or comments) after every multi-line if statement\n multi-func: false # Enforces newlines (or comments) after every multi-line function signature\n\nlinters:\n enable:\n - megacheck\n - govet\n disable:\n - maligned\n - prealloc\n disable-all: false\n presets:\n - bugs\n - unused\n fast: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\sirupsen\logrus\.golangci.yml | .golangci.yml | YAML | 974 | 0.95 | 0.1 | 0.176471 | react-lib | 717 | 2024-09-09T04:02:17.240826 | BSD-3-Clause | false | 97b88b4b9fceb8fa5f567c57de363e47 |
language: go\ngo_import_path: github.com/sirupsen/logrus\ngit:\n depth: 1\nenv:\n - GO111MODULE=on\ngo: 1.15.x\nos: linux\ninstall:\n - ./travis/install.sh\nscript:\n - cd ci\n - go run mage.go -v -w ../ crossBuild\n - go run mage.go -v -w ../ lint\n - go run mage.go -v -w ../ test\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\sirupsen\logrus\.travis.yml | .travis.yml | YAML | 276 | 0.85 | 0 | 0 | react-lib | 676 | 2023-12-30T16:33:48.338154 | MIT | false | 16e6bdc24b6e75b9f4fa4b2c26c2f2c3 |
version: "{build}"\nplatform: x64\nclone_folder: c:\gopath\src\github.com\sirupsen\logrus\nenvironment:\n GOPATH: c:\gopath\nbranches:\n only:\n - master\ninstall:\n - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%\n - go version\nbuild_script:\n - go get -t\n - go test\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\sirupsen\logrus\appveyor.yml | appveyor.yml | YAML | 259 | 0.7 | 0 | 0 | python-kit | 465 | 2024-05-06T18:47:29.088981 | MIT | false | 28f490e2e7c88ac69cac01b12eded3d7 |
# Copyright 2013-2023 The Cobra Authors\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nrun:\n deadline: 5m\n\nlinters:\n disable-all: true\n enable:\n #- bodyclose\n # - deadcode ! deprecated since v1.49.0; replaced by 'unused'\n #- depguard\n #- dogsled\n #- dupl\n - errcheck\n #- exhaustive\n #- funlen\n #- gochecknoinits\n - goconst\n - gocritic\n #- gocyclo\n - gofmt\n - goimports\n #- gomnd\n #- goprintffuncname\n - gosec\n - gosimple\n - govet\n - ineffassign\n #- lll\n - misspell\n #- nakedret\n #- noctx\n - nolintlint\n #- rowserrcheck\n #- scopelint\n - staticcheck\n #- structcheck ! deprecated since v1.49.0; replaced by 'unused'\n - stylecheck\n #- typecheck\n - unconvert\n #- unparam\n - unused\n # - varcheck ! deprecated since v1.49.0; replaced by 'unused'\n #- whitespace\n fast: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\spf13\cobra\.golangci.yml | .golangci.yml | YAML | 1,380 | 0.95 | 0.017544 | 0.618182 | vue-tools | 738 | 2024-08-07T12:20:38.555767 | Apache-2.0 | false | 967756e736da2c1685fec8c8c535c8e3 |
sudo: false\n\nlanguage: go\n\ngo:\n - 1.9.x\n - 1.10.x\n - 1.11.x\n - tip\n\nmatrix:\n allow_failures:\n - go: tip\n\ninstall:\n - go get golang.org/x/lint/golint\n - export PATH=$GOPATH/bin:$PATH\n - go install ./...\n\nscript:\n - verify/all.sh -v\n - go test ./...\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\spf13\pflag\.travis.yml | .travis.yml | YAML | 261 | 0.7 | 0 | 0 | python-kit | 760 | 2024-12-10T21:50:01.526876 | BSD-3-Clause | false | f504718ab320acb1939add99896255f7 |
run:\n deadline: 10m\n\nlinters:\n enable:\n - dupl\n - goconst\n - gocyclo\n - godox\n - gosec\n - interfacer\n - lll\n - maligned\n - misspell\n - prealloc\n - stylecheck\n - unconvert\n - unparam\n - errcheck\n - golint\n - gofmt\n disable: []\n fast: false\n\nissues:\n exclude-use-default: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\stoewer\go-strcase\.golangci.yml | .golangci.yml | YAML | 297 | 0.7 | 0 | 0 | vue-tools | 478 | 2023-10-14T02:34:26.133891 | MIT | false | fa99edc8d6679d91477c5c512b49b4b6 |
skip_branch_with_pr: true\nos: "Visual Studio 2015"\n\nbuild: off\n\nenvironment:\n matrix:\n - # Default Go, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n - # Default Go, x86\n ARCH: x86\n MSYS2_ARCH: i686\n MSYS2_DIR: msys64\n MSYSTEM: MINGW32\n GOPATH: c:\gopath\n GOROOT: c:\go-x86\n GOARCH: 386\n EXTLD: i686-w64-mingw32-gcc\n - # Go 1.12, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go112\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n - # Go 1.11, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go111\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n - # Go 1.10, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go110\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n - # Go 1.9, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go19\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n - # Go 1.9, x64\n ARCH: x64\n MSYS2_ARCH: x86_64\n MSYS2_DIR: msys64\n MSYSTEM: MINGW64\n GOPATH: c:\gopath\n GOROOT: c:\go18\n GOARCH: amd64\n EXTLD: x86_64-w64-mingw32-gcc\n\nclone_folder: C:\gopath\src\github.com\github\certstore\n\nbefore_test:\n # Ensure CGO is enabled\n - set CGO_ENABLED=1\n # Go paths\n - set PATH=%GOROOT%\bin;C:\%GOPATH%\bin;%PATH%\n # MSYS paths\n - set PATH=C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;%PATH%\n # Install build deps\n - bash -lc "for n in `seq 1 3`; do pacman --noconfirm -S mingw-w64-%MSYS2_ARCH%-libtool && break || sleep 15; done"\n # Install Go deps\n - go get -t -v ./...\n\ntest_script:\n - go test -v ./...\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tailscale\certstore\.appveyor.yml | .appveyor.yml | YAML | 2,052 | 0.8 | 0.011494 | 0.060976 | node-utils | 420 | 2024-09-22T19:24:13.846877 | GPL-3.0 | false | 8290c6789ba7b9dca41f14c812aa5737 |
run:\n skip-dirs:\n - pkg/etw/sample\n\nlinters:\n enable:\n # style\n - containedctx # struct contains a context\n - dupl # duplicate code\n - errname # erorrs are named correctly\n - nolintlint # "//nolint" directives are properly explained\n - revive # golint replacement\n - unconvert # unnecessary conversions\n - wastedassign\n\n # bugs, performance, unused, etc ...\n - contextcheck # function uses a non-inherited context\n - errorlint # errors not wrapped for 1.13\n - exhaustive # check exhaustiveness of enum switch statements\n - gofmt # files are gofmt'ed\n - gosec # security\n - nilerr # returns nil even with non-nil error\n - thelper # test helpers without t.Helper()\n - unparam # unused function params\n\nissues:\n exclude-rules:\n # err is very often shadowed in nested scopes\n - linters:\n - govet\n text: '^shadow: declaration of "err" shadows declaration'\n\n # ignore long lines for skip autogen directives\n - linters:\n - revive\n text: "^line-length-limit: "\n source: "^//(go:generate|sys) "\n\n #TODO: remove after upgrading to go1.18\n # ignore comment spacing for nolint and sys directives\n - linters:\n - revive\n text: "^comment-spacings: no space between comment delimiter and comment text"\n source: "//(cspell:|nolint:|sys |todo)"\n\n # not on go 1.18 yet, so no any\n - linters:\n - revive\n text: "^use-any: since GO 1.18 'interface{}' can be replaced by 'any'"\n\n # allow unjustified ignores of error checks in defer statements\n - linters:\n - nolintlint\n text: "^directive `//nolint:errcheck` should provide explanation"\n source: '^\s*defer '\n\n # allow unjustified ignores of error lints for io.EOF\n - linters:\n - nolintlint\n text: "^directive `//nolint:errorlint` should provide explanation"\n source: '[=|!]= io.EOF'\n\n\nlinters-settings:\n exhaustive:\n default-signifies-exhaustive: true\n govet:\n enable-all: true\n disable:\n # struct order is often for Win32 compat\n # also, ignore pointer bytes/GC issues for now until performance becomes an issue\n - fieldalignment\n check-shadowing: true\n nolintlint:\n allow-leading-space: false\n require-explanation: true\n require-specific: true\n revive:\n # revive is more configurable than static check, so likely the preferred alternative to static-check\n # (once the perf issue is solved: https://github.com/golangci/golangci-lint/issues/2997)\n enable-all-rules:\n true\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md\n rules:\n # rules with required arguments\n - name: argument-limit\n disabled: true\n - name: banned-characters\n disabled: true\n - name: cognitive-complexity\n disabled: true\n - name: cyclomatic\n disabled: true\n - name: file-header\n disabled: true\n - name: function-length\n disabled: true\n - name: function-result-limit\n disabled: true\n - name: max-public-structs\n disabled: true\n # geneally annoying rules\n - name: add-constant # complains about any and all strings and integers\n disabled: true\n - name: confusing-naming # we frequently use "Foo()" and "foo()" together\n disabled: true\n - name: flag-parameter # excessive, and a common idiom we use\n disabled: true\n - name: unhandled-error # warns over common fmt.Print* and io.Close; rely on errcheck instead\n disabled: true\n # general config\n - name: line-length-limit\n arguments:\n - 140\n - name: var-naming\n arguments:\n - []\n - - CID\n - CRI\n - CTRD\n - DACL\n - DLL\n - DOS\n - ETW\n - FSCTL\n - GCS\n - GMSA\n - HCS\n - HV\n - IO\n - LCOW\n - LDAP\n - LPAC\n - LTSC\n - MMIO\n - NT\n - OCI\n - PMEM\n - PWSH\n - RX\n - SACl\n - SID\n - SMB\n - TX\n - VHD\n - VHDX\n - VMID\n - VPCI\n - WCOW\n - WIM\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tailscale\go-winio\.golangci.yml | .golangci.yml | YAML | 4,303 | 0.95 | 0.073333 | 0.121429 | awesome-app | 108 | 2025-05-22T21:00:50.739046 | GPL-3.0 | false | d0d627f77f85b745204ec44bc72e69a4 |
language: go\ngo:\n - "1.12.x"\n - "1.13.x"\n - "1.14.x"\nbefore_script:\n # make sure we keep path in tact when we sudo\n - sudo sed -i -e 's/^Defaults\tsecure_path.*$//' /etc/sudoers\n # modprobe ip_gre or else the first gre device can't be deleted\n - sudo modprobe ip_gre\n # modprobe nf_conntrack for the conntrack testing\n - sudo modprobe nf_conntrack\n - sudo modprobe nf_conntrack_netlink\n - sudo modprobe nf_conntrack_ipv4\n - sudo modprobe nf_conntrack_ipv6\n - sudo modprobe sch_hfsc\n - sudo modprobe sch_sfq\ninstall:\n - go get -v -t ./...\ngo_import_path: github.com/tailscale/netlink\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tailscale\netlink\.travis.yml | .travis.yml | YAML | 598 | 0.95 | 0.05 | 0.15 | react-lib | 291 | 2024-12-11T04:47:25.629032 | GPL-3.0 | false | 6c036969f5e162060e23782e96ddbb3d |
box: tcnksm/gox\nbuild:\n steps:\n - setup-go-workspace\n - script:\n name: install latest git\n code: |\n sudo add-apt-repository -y ppa:git-core/ppa\n sudo apt-get -y update\n sudo apt-get -y install git\n - script:\n name: git version\n code: |\n git version \n - script:\n name: go get\n code: | \n go get -t ./...\n - tcnksm/goveralls:\n token: $COVERALLS_REPO_TOKEN | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tcnksm\go-gitconfig\wercker.yml | wercker.yml | YAML | 526 | 0.7 | 0 | 0 | vue-tools | 772 | 2023-10-07T20:46:09.501024 | GPL-3.0 | false | 40742d1d5d3abc8d516b742757780747 |
language: go\n\ngo:\n - 1.7.5\n - 1.8\n - 1.8.1\n - tip\n\nos:\n - linux\n - osx\n\nsudo: false\n\ninstall:\n - echo "skipping travis default"\n\nscript:\n - make test-all\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tcnksm\go-httpstat\.travis.yml | .travis.yml | YAML | 162 | 0.7 | 0 | 0 | python-kit | 667 | 2023-08-29T11:36:54.427957 | GPL-3.0 | false | 0205d8fad0aa2e60457516f7d9c4b532 |
run:\n timeout: 30m\n\nlinters:\n enable:\n - gofmt\n - govet\n - goimports\n - ineffassign\n - misspell\n - unused\n - staticcheck\n - typecheck\n disable-all: true\n\nlinters-settings:\n depguard:\n rules:\n main:\n deny:\n # The io/ioutil package has been deprecated.\n # https://go.dev/doc/go1.16#ioutil\n - pkg: "io/ioutil"\n desc: The io/ioutil package has been deprecated.\n\nissues:\n exclude-files:\n - ".*\\.pb\\.go$"\n\n # show all\n max-issues-per-linter: 0\n max-same-issues: 0\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tonistiigi\fsutil\.golangci.yml | .golangci.yml | YAML | 548 | 0.95 | 0 | 0.107143 | awesome-app | 4 | 2024-12-11T10:21:55.045022 | MIT | false | c962dbd4381be1d0f78b88c733f12854 |
comment: false\n\ncoverage:\n status:\n project: # settings affecting project coverage\n default:\n target: auto # auto % coverage target\n threshold: 1% # allow for 1% reduction of coverage without failing\n patch: off\n\ngithub_checks:\n annotations: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tonistiigi\fsutil\codecov.yml | codecov.yml | YAML | 278 | 0.8 | 0.083333 | 0 | python-kit | 895 | 2024-10-04T23:35:27.694247 | GPL-3.0 | false | 68ad261b0dbeae6102b8e731da622a09 |
run:\n timeout: 10m\n\nlinters:\n enable:\n - bodyclose\n - depguard\n - errname\n - forbidigo\n - gocritic\n - gofmt\n - goimports\n - gosec\n - gosimple\n - govet\n - importas\n - ineffassign\n - makezero\n - misspell\n - noctx\n - nolintlint\n - revive\n - staticcheck\n - typecheck\n - unused\n - whitespace\n disable-all: true\n\nissues:\n exclude-use-default: false\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tonistiigi\go-csvvalue\.golangci.yml | .golangci.yml | YAML | 410 | 0.85 | 0 | 0 | awesome-app | 509 | 2024-04-08T14:50:51.597232 | GPL-3.0 | false | b8e6cede8a63f8e2a2df64c8128051e8 |
ignore: |\n /vendor\n\nextends: default\n\nyaml-files:\n - '*.yaml'\n - '*.yml'\n\nrules:\n truthy: disable\n line-length: disable\n document-start: disable\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\tonistiigi\go-csvvalue\.yamllint.yml | .yamllint.yml | YAML | 151 | 0.7 | 0 | 0 | node-utils | 499 | 2024-02-10T02:11:33.558953 | BSD-3-Clause | false | 35a175984d5fe247d8030c02159203ac |
linters:\n enable:\n - errcheck\n - errorlint\n - gocritic\n - gosec\n - gosimple\n - govet\n - gci\n - misspell\n - nonamedreturns\n - staticcheck\n - unconvert\n - unparam\n - unused\n - whitespace\n\nlinters-settings:\n gci:\n sections:\n - standard\n - default\n - prefix(github.com/vishvananda)\n\nrun:\n timeout: 5m\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\vishvananda\netns\.golangci.yml | .golangci.yml | YAML | 360 | 0.7 | 0 | 0 | vue-tools | 984 | 2024-07-30T15:45:11.371202 | BSD-3-Clause | false | 6d98452b35de6bfca058569dc8b3ef00 |
---\nextends: default\n\nrules:\n document-start: disable\n line-length: disable\n truthy:\n ignore: |\n .github/workflows/*.yml\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\vishvananda\netns\.yamllint.yml | .yamllint.yml | YAML | 132 | 0.8 | 0 | 0 | node-utils | 781 | 2024-11-03T06:48:05.041722 | BSD-3-Clause | false | abddf3d372aa3e06b8fe53be32393d1e |
language: go\n\ngo:\n - 1.11.x\n\nenv:\n - GO111MODULE=on \n \nscript:\n - go test -short -coverprofile=coverage.txt -covermode=count ./...\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash) \n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\x448\float16\.travis.yml | .travis.yml | YAML | 197 | 0.8 | 0 | 0 | node-utils | 328 | 2025-06-18T00:23:11.899603 | Apache-2.0 | false | 773d8d82e81a1db1741743c8ad3b9b7d |
language: go\ngo:\n - "1.11"\n - "1.12"\n - "1.13"\nbefore_install:\n - go get github.com/xeipuuv/gojsonreference\n - go get github.com/xeipuuv/gojsonpointer\n - go get github.com/stretchr/testify/assert\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\xeipuuv\gojsonschema\.travis.yml | .travis.yml | YAML | 202 | 0.7 | 0 | 0 | node-utils | 384 | 2024-12-11T20:31:52.370383 | GPL-3.0 | false | 9d908fa8c8b76a6d012bbd58474994ad |
# See https://github.com/golangci/golangci-lint#config-file\nrun:\n issues-exit-code: 1 #Default\n tests: true #Default\n\nlinters:\n # Disable everything by default so upgrades to not include new "default\n # enabled" linters.\n disable-all: true\n # Specifically enable linters we want to use.\n enable:\n - asasalint\n - bodyclose\n - depguard\n - errcheck\n - errorlint\n - godot\n - gofumpt\n - goimports\n - gosec\n - gosimple\n - govet\n - ineffassign\n - misspell\n - perfsprint\n - revive\n - staticcheck\n - tenv\n - testifylint\n - typecheck\n - unconvert\n - unused\n - unparam\n - usestdlibvars\n\nissues:\n # Maximum issues count per one linter.\n # Set to 0 to disable.\n # Default: 50\n # Setting to unlimited so the linter only is run once to debug all issues.\n max-issues-per-linter: 0\n # Maximum count of issues with the same text.\n # Set to 0 to disable.\n # Default: 3\n # Setting to unlimited so the linter only is run once to debug all issues.\n max-same-issues: 0\n # Excluding configuration per-path, per-linter, per-text and per-source.\n exclude-rules:\n # TODO: Having appropriate comments for exported objects helps development,\n # even for objects in internal packages. Appropriate comments for all\n # exported objects should be added and this exclusion removed.\n - path: '.*internal/.*'\n text: "exported (method|function|type|const) (.+) should have comment or be unexported"\n linters:\n - revive\n # Yes, they are, but it's okay in a test.\n - path: _test\.go\n text: "exported func.*returns unexported type.*which can be annoying to use"\n linters:\n - revive\n # Example test functions should be treated like main.\n - path: example.*_test\.go\n text: "calls to (.+) only in main[(][)] or init[(][)] functions"\n linters:\n - revive\n # It's okay to not run gosec and perfsprint in a test.\n - path: _test\.go\n linters:\n - gosec\n - perfsprint\n # Ignoring gosec G404: Use of weak random number generator (math/rand instead of crypto/rand)\n # as we commonly use it in tests and examples.\n - text: "G404:"\n linters:\n - gosec\n # Ignoring gosec G402: TLS MinVersion too low\n # as the https://pkg.go.dev/crypto/tls#Config handles MinVersion default well.\n - text: "G402: TLS MinVersion too low."\n linters:\n - gosec\n include:\n # revive exported should have comment or be unexported.\n - EXC0012\n # revive package comment should be of the form ...\n - EXC0013\n\nlinters-settings:\n depguard:\n rules:\n non-tests:\n files:\n - "!$test"\n - "!**/*test/*.go"\n - "!**/internal/matchers/*.go"\n deny:\n - pkg: "testing"\n - pkg: "github.com/stretchr/testify"\n - pkg: "crypto/md5"\n - pkg: "crypto/sha1"\n - pkg: "crypto/**/pkix"\n auto/sdk:\n files:\n - "!internal/global/trace.go"\n - "~internal/global/trace_test.go"\n deny:\n - pkg: "go.opentelemetry.io/auto/sdk"\n desc: Do not use SDK from automatic instrumentation.\n otlp-internal:\n files:\n - "!**/exporters/otlp/internal/**/*.go"\n deny:\n - pkg: "go.opentelemetry.io/otel/exporters/otlp/internal"\n desc: Do not use cross-module internal packages.\n otlptrace-internal:\n files:\n - "!**/exporters/otlp/otlptrace/*.go"\n - "!**/exporters/otlp/otlptrace/internal/**.go"\n deny:\n - pkg: "go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal"\n desc: Do not use cross-module internal packages.\n otlpmetric-internal:\n files:\n - "!**/exporters/otlp/otlpmetric/internal/*.go"\n - "!**/exporters/otlp/otlpmetric/internal/**/*.go"\n deny:\n - pkg: "go.opentelemetry.io/otel/exporters/otlp/otlpmetric/internal"\n desc: Do not use cross-module internal packages.\n otel-internal:\n files:\n - "**/sdk/*.go"\n - "**/sdk/**/*.go"\n - "**/exporters/*.go"\n - "**/exporters/**/*.go"\n - "**/schema/*.go"\n - "**/schema/**/*.go"\n - "**/metric/*.go"\n - "**/metric/**/*.go"\n - "**/bridge/*.go"\n - "**/bridge/**/*.go"\n - "**/trace/*.go"\n - "**/trace/**/*.go"\n - "**/log/*.go"\n - "**/log/**/*.go"\n deny:\n - pkg: "go.opentelemetry.io/otel/internal$"\n desc: Do not use cross-module internal packages.\n - pkg: "go.opentelemetry.io/otel/internal/attribute"\n desc: Do not use cross-module internal packages.\n - pkg: "go.opentelemetry.io/otel/internal/internaltest"\n desc: Do not use cross-module internal packages.\n - pkg: "go.opentelemetry.io/otel/internal/matchers"\n desc: Do not use cross-module internal packages.\n godot:\n exclude:\n # Exclude links.\n - '^ *\[[^]]+\]:'\n # Exclude sentence fragments for lists.\n - '^[ ]*[-•]'\n # Exclude sentences prefixing a list.\n - ':$'\n goimports:\n local-prefixes: go.opentelemetry.io\n misspell:\n locale: US\n ignore-words:\n - cancelled\n perfsprint:\n err-error: true\n errorf: true\n int-conversion: true\n sprintf1: true\n strconcat: true\n revive:\n # Sets the default failure confidence.\n # This means that linting errors with less than 0.8 confidence will be ignored.\n # Default: 0.8\n confidence: 0.01\n rules:\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#blank-imports\n - name: blank-imports\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#bool-literal-in-expr\n - name: bool-literal-in-expr\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#constant-logical-expr\n - name: constant-logical-expr\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#context-as-argument\n # TODO (#3372) re-enable linter when it is compatible. https://github.com/golangci/golangci-lint/issues/3280\n - name: context-as-argument\n disabled: true\n arguments:\n allowTypesBefore: "*testing.T"\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#context-keys-type\n - name: context-keys-type\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#deep-exit\n - name: deep-exit\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#defer\n - name: defer\n disabled: false\n arguments:\n - ["call-chain", "loop"]\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#dot-imports\n - name: dot-imports\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#duplicated-imports\n - name: duplicated-imports\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#early-return\n - name: early-return\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#empty-block\n - name: empty-block\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#empty-lines\n - name: empty-lines\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-naming\n - name: error-naming\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-return\n - name: error-return\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-strings\n - name: error-strings\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#errorf\n - name: errorf\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#exported\n - name: exported\n disabled: false\n arguments:\n - "sayRepetitiveInsteadOfStutters"\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#flag-parameter\n - name: flag-parameter\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#identical-branches\n - name: identical-branches\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#if-return\n - name: if-return\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#increment-decrement\n - name: increment-decrement\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#indent-error-flow\n - name: indent-error-flow\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#import-shadowing\n - name: import-shadowing\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#package-comments\n - name: package-comments\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range\n - name: range\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range-val-in-closure\n - name: range-val-in-closure\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range-val-address\n - name: range-val-address\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#redefines-builtin-id\n - name: redefines-builtin-id\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#string-format\n - name: string-format\n disabled: false\n arguments:\n - - panic\n - '/^[^\n]*$/'\n - must not contain line breaks\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#struct-tag\n - name: struct-tag\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#superfluous-else\n - name: superfluous-else\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#time-equal\n - name: time-equal\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#var-naming\n - name: var-naming\n disabled: false\n arguments:\n - ["ID"] # AllowList\n - ["Otel", "Aws", "Gcp"] # DenyList\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#var-declaration\n - name: var-declaration\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unconditional-recursion\n - name: unconditional-recursion\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unexported-return\n - name: unexported-return\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unhandled-error\n - name: unhandled-error\n disabled: false\n arguments:\n - "fmt.Fprint"\n - "fmt.Fprintf"\n - "fmt.Fprintln"\n - "fmt.Print"\n - "fmt.Printf"\n - "fmt.Println"\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unnecessary-stmt\n - name: unnecessary-stmt\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#useless-break\n - name: useless-break\n disabled: false\n # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#waitgroup-by-value\n - name: waitgroup-by-value\n disabled: false\n testifylint:\n enable-all: true\n disable:\n - float-compare\n - go-require\n - require-error\n | dataset_sample\yaml\loft-sh_devpod\vendor\go.opentelemetry.io\otel\.golangci.yml | .golangci.yml | YAML | 12,126 | 0.95 | 0.021538 | 0.223602 | awesome-app | 379 | 2025-02-15T18:36:03.665304 | BSD-3-Clause | false | 51bb55ddac75789a915f2ea3db558791 |
coverage:\n range: 80..100\n round: down\n precision: 2\n\n status:\n project: # measuring the overall project coverage\n default: # context, you can create multiple ones with custom titles\n enabled: yes # must be yes|true to enable this status\n target: 100 # specify the target coverage for each commit status\n # option: "auto" (must increase from parent commit or pull request base)\n # option: "X%" a static target percentage to hit\n if_not_found: success # if parent is not found report status as success, error, or failure\n if_ci_failed: error # if ci fails report status as success, error, or failure\n\n | dataset_sample\yaml\loft-sh_devpod\vendor\go.uber.org\multierr\.codecov.yml | .codecov.yml | YAML | 763 | 0.8 | 0.2 | 0.153846 | react-lib | 113 | 2023-11-03T16:05:21.805961 | BSD-3-Clause | false | 47a21b3ecf2c1abbbffc83074925a3c0 |
coverage:\n range: 80..100\n round: down\n precision: 2\n\n status:\n project: # measuring the overall project coverage\n default: # context, you can create multiple ones with custom titles\n enabled: yes # must be yes|true to enable this status\n target: 95% # specify the target coverage for each commit status\n # option: "auto" (must increase from parent commit or pull request base)\n # option: "X%" a static target percentage to hit\n if_not_found: success # if parent is not found report status as success, error, or failure\n if_ci_failed: error # if ci fails report status as success, error, or failure\nignore:\n - internal/readme/readme.go\n\n | dataset_sample\yaml\loft-sh_devpod\vendor\go.uber.org\zap\.codecov.yml | .codecov.yml | YAML | 801 | 0.8 | 0.176471 | 0.133333 | python-kit | 220 | 2023-12-15T22:55:51.425860 | Apache-2.0 | false | 322c63b6b124b9e5ab95491701bf47fb |
output:\n # Make output more digestible with quickfix in vim/emacs/etc.\n sort-results: true\n print-issued-lines: false\n\nlinters:\n # We'll track the golangci-lint default linters manually\n # instead of letting them change without our control.\n disable-all: true\n enable:\n # golangci-lint defaults:\n - errcheck\n - gosimple\n - govet\n - ineffassign\n - staticcheck\n - unused\n\n # Our own extras:\n - gofumpt\n - nolintlint # lints nolint directives\n - revive\n\nlinters-settings:\n govet:\n # These govet checks are disabled by default, but they're useful.\n enable:\n - niliness\n - reflectvaluecompare\n - sortslice\n - unusedwrite\n\n errcheck:\n exclude-functions:\n # These methods can not fail.\n # They operate on an in-memory buffer.\n - (*go.uber.org/zap/buffer.Buffer).Write\n - (*go.uber.org/zap/buffer.Buffer).WriteByte\n - (*go.uber.org/zap/buffer.Buffer).WriteString\n\n - (*go.uber.org/zap/zapio.Writer).Close\n - (*go.uber.org/zap/zapio.Writer).Sync\n - (*go.uber.org/zap/zapio.Writer).Write\n # Write to zapio.Writer cannot fail,\n # so io.WriteString on it cannot fail.\n - io.WriteString(*go.uber.org/zap/zapio.Writer)\n\n # Writing a plain string to a fmt.State cannot fail.\n - io.WriteString(fmt.State)\n\nissues:\n # Print all issues reported by all linters.\n max-issues-per-linter: 0\n max-same-issues: 0\n\n # Don't ignore some of the issues that golangci-lint considers okay.\n # This includes documenting all exported entities.\n exclude-use-default: false\n\n exclude-rules:\n # Don't warn on unused parameters.\n # Parameter names are useful; replacing them with '_' is undesirable.\n - linters: [revive]\n text: 'unused-parameter: parameter \S+ seems to be unused, consider removing or renaming it as _'\n\n # staticcheck already has smarter checks for empty blocks.\n # revive's empty-block linter has false positives.\n # For example, as of writing this, the following is not allowed.\n # for foo() { }\n - linters: [revive]\n text: 'empty-block: this block is empty, you can remove it'\n\n # Ignore logger.Sync() errcheck failures in example_test.go\n # since those are intended to be uncomplicated examples.\n - linters: [errcheck]\n path: example_test.go\n text: 'Error return value of `logger.Sync` is not checked'\n | dataset_sample\yaml\loft-sh_devpod\vendor\go.uber.org\zap\.golangci.yml | .golangci.yml | YAML | 2,386 | 0.95 | 0.025974 | 0.333333 | react-lib | 201 | 2024-05-16T12:09:57.378506 | BSD-3-Clause | false | b126debe5c78b49b8d216daa58b8968a |
language: go\n\ngo:\n - tip\n\ninstall:\n - export GOPATH="$HOME/gopath"\n - mkdir -p "$GOPATH/src/golang.org/x"\n - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2"\n - go get -v -t -d golang.org/x/oauth2/...\n\nscript:\n - go test -v golang.org/x/oauth2/...\n | dataset_sample\yaml\loft-sh_devpod\vendor\golang.org\x\oauth2\.travis.yml | .travis.yml | YAML | 262 | 0.7 | 0 | 0 | python-kit | 647 | 2023-10-14T08:15:51.359454 | BSD-3-Clause | false | 1a68e7809045200cda2e2ed6fc4f5890 |
language: go\n\ngo:\n - tip\n - 1.15.x\n - 1.14.x\n - 1.13.x\n - 1.12.x\n \nenv:\n - GO111MODULE=on\n | dataset_sample\yaml\loft-sh_devpod\vendor\gopkg.in\natefinch\lumberjack.v2\.travis.yml | .travis.yml | YAML | 97 | 0.5 | 0 | 0 | react-lib | 29 | 2025-03-15T10:51:18.478990 | BSD-3-Clause | false | 376f286fb2079f2e3db4cea3bd6cbb81 |
language: go\n\nsudo: false\n\nmatrix:\n fast_finish: true\n allow_failures:\n - go: tip\n\ngo:\n- '1.14.x'\n- '1.15.x'\n- tip\n\ngo_import_path: gopkg.in/square/go-jose.v2\n\nbefore_script:\n- export PATH=$HOME/.local/bin:$PATH\n\nbefore_install:\n# Install encrypted gitcookies to get around bandwidth-limits\n# that is causing Travis-CI builds to fail. For more info, see\n# https://github.com/golang/go/issues/12933\n- openssl aes-256-cbc -K $encrypted_1528c3c2cafd_key -iv $encrypted_1528c3c2cafd_iv -in .gitcookies.sh.enc -out .gitcookies.sh -d || true\n- bash .gitcookies.sh || true\n- go get github.com/wadey/gocovmerge\n- go get github.com/mattn/goveralls\n- go get github.com/stretchr/testify/assert\n- go get github.com/stretchr/testify/require\n- go get github.com/google/go-cmp/cmp\n- go get golang.org/x/tools/cmd/cover || true\n- go get code.google.com/p/go.tools/cmd/cover || true\n- pip install cram --user\n\nscript:\n- go test . -v -covermode=count -coverprofile=profile.cov\n- go test ./cipher -v -covermode=count -coverprofile=cipher/profile.cov\n- go test ./jwt -v -covermode=count -coverprofile=jwt/profile.cov\n- go test ./json -v # no coverage for forked encoding/json package\n- cd jose-util && go build && PATH=$PWD:$PATH cram -v jose-util.t # cram tests jose-util\n- cd ..\n\nafter_success:\n- gocovmerge *.cov */*.cov > merged.coverprofile\n- $HOME/gopath/bin/goveralls -coverprofile merged.coverprofile -service=travis-ci\n | dataset_sample\yaml\loft-sh_devpod\vendor\gopkg.in\square\go-jose.v2\.travis.yml | .travis.yml | YAML | 1,413 | 0.95 | 0.022222 | 0.081081 | node-utils | 769 | 2025-07-04T22:22:45.101006 | Apache-2.0 | false | 61ce2ebc37cff1e819f020395ee5c6f1 |
language: go\n\ngo:\n - "1.4.x"\n - "1.5.x"\n - "1.6.x"\n - "1.7.x"\n - "1.8.x"\n - "1.9.x"\n - "1.10.x"\n - "1.11.x"\n - "1.12.x"\n - "1.13.x"\n - "1.14.x"\n - "tip"\n\ngo_import_path: gopkg.in/yaml.v2\n | dataset_sample\yaml\loft-sh_devpod\vendor\gopkg.in\yaml.v2\.travis.yml | .travis.yml | YAML | 223 | 0.85 | 0 | 0 | python-kit | 117 | 2024-09-30T13:20:47.150756 | Apache-2.0 | false | 2d12342affd6d5ea1bb8148206423ec3 |
linters:\n disable-all: true\n enable:\n - asasalint\n - asciicheck\n - bidichk\n - bodyclose\n - copyloopvar\n - dogsled\n - dupl\n - errcheck\n - errchkjson\n - errorlint\n - exhaustive\n - ginkgolinter\n - goconst\n - gocritic\n - gocyclo\n - gofmt\n - goimports\n - goprintffuncname\n - gosimple\n - govet\n - importas\n - ineffassign\n - makezero\n - misspell\n - nakedret\n - nilerr\n - nolintlint\n - prealloc\n - revive\n - staticcheck\n - stylecheck\n - tagliatelle\n - typecheck\n - unconvert\n - unparam\n - unused\n - whitespace\n\nlinters-settings:\n govet:\n enable-all: true\n disable:\n - fieldalignment\n - shadow\n importas:\n no-unaliased: true\n alias:\n # Kubernetes\n - pkg: k8s.io/api/core/v1\n alias: corev1\n - pkg: k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1\n alias: apiextensionsv1\n - pkg: k8s.io/apimachinery/pkg/apis/meta/v1\n alias: metav1\n - pkg: k8s.io/apimachinery/pkg/api/errors\n alias: apierrors\n - pkg: k8s.io/apimachinery/pkg/util/errors\n alias: kerrors\n # Controller Runtime\n - pkg: sigs.k8s.io/controller-runtime\n alias: ctrl\n revive:\n rules:\n # The following rules are recommended https://github.com/mgechev/revive#recommended-configuration\n - name: blank-imports\n - name: context-as-argument\n - name: context-keys-type\n - name: dot-imports\n - name: error-return\n - name: error-strings\n - name: error-naming\n - name: exported\n - name: if-return\n - name: increment-decrement\n - name: var-naming\n - name: var-declaration\n - name: range\n - name: receiver-naming\n - name: time-naming\n - name: unexported-return\n - name: indent-error-flow\n - name: errorf\n - name: superfluous-else\n - name: unreachable-code\n - name: redefines-builtin-id\n #\n # Rules in addition to the recommended configuration above.\n #\n - name: bool-literal-in-expr\n - name: constant-logical-expr\n\nissues:\n max-same-issues: 0\n max-issues-per-linter: 0\n # We are disabling default golangci exclusions because we want to help reviewers to focus on reviewing the most relevant\n # changes in PRs and avoid nitpicking.\n exclude-use-default: false\n # List of regexps of issue texts to exclude, empty list by default.\n exclude:\n # The following are being worked on to remove their exclusion. This list should be reduced or go away all together over time.\n # If it is decided they will not be addressed they should be moved above this comment.\n - Subprocess launch(ed with variable|ing should be audited)\n - (G204|G104|G307)\n - "ST1000: at least one file in a package should have a package comment"\n exclude-files:\n - "zz_generated.*\\.go$"\n - ".*conversion.*\\.go$"\n exclude-rules:\n - linters:\n - gosec\n text: "G108: Profiling endpoint is automatically exposed on /debug/pprof"\n - linters:\n - revive\n text: "exported: exported method .*\\.(Reconcile|SetupWithManager|SetupWebhookWithManager) should have comment or be unexported"\n - linters:\n - errcheck\n text: Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*print(f|ln)?|os\.(Un)?Setenv). is not checked\n - linters:\n - staticcheck\n text: "SA1019: .*The component config package has been deprecated and will be removed in a future release."\n # With Go 1.16, the new embed directive can be used with an un-named import,\n # revive (previously, golint) only allows these to be imported in a main.go, which wouldn't work for us.\n # This directive allows the embed package to be imported with an underscore everywhere.\n - linters:\n - revive\n source: _ "embed"\n # Exclude some packages or code to require comments, for example test code, or fake clients.\n - linters:\n - revive\n text: exported (method|function|type|const) (.+) should have comment or be unexported\n source: (func|type).*Fake.*\n - linters:\n - revive\n text: exported (method|function|type|const) (.+) should have comment or be unexported\n path: fake_\.go\n # Disable unparam "always receives" which might not be really\n # useful when building libraries.\n - linters:\n - unparam\n text: always receives\n # Dot imports for gomega and ginkgo are allowed\n # within test files.\n - path: _test\.go\n text: should not use dot imports\n - path: _test\.go\n text: cyclomatic complexity\n - path: _test\.go\n text: "G107: Potential HTTP request made with variable url"\n # Append should be able to assign to a different var/slice.\n - linters:\n - gocritic\n text: "appendAssign: append result not assigned to the same slice"\n - linters:\n - gocritic\n text: "singleCaseSwitch: should rewrite switch statement to if statement"\n # It considers all file access to a filename that comes from a variable problematic,\n # which is naiv at best.\n - linters:\n - gosec\n text: "G304: Potential file inclusion via variable"\n - linters:\n - dupl\n path: _test\.go\n - linters:\n - revive\n path: .*/internal/.*\n - linters:\n - unused\n # Seems to incorrectly trigger on the two implementations that are only\n # used through an interface and not directly..?\n path: pkg/controller/priorityqueue/metrics\.go\n\nrun:\n go: "1.23"\n timeout: 10m\n allow-parallel-runners: true\n | dataset_sample\yaml\loft-sh_devpod\vendor\sigs.k8s.io\controller-runtime\.golangci.yml | .golangci.yml | YAML | 5,600 | 0.95 | 0.044693 | 0.136364 | awesome-app | 54 | 2023-07-21T21:24:23.680957 | Apache-2.0 | false | ffe8d5a2f198a794ce90c983beba4e0a |
language: go\narch: arm64\ndist: focal\ngo: 1.15.x\nscript:\n - diff -u <(echo -n) <(gofmt -d *.go)\n - diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)\n - GO111MODULE=on go vet .\n - GO111MODULE=on go test -v -race ./...\n - git diff --exit-code\ninstall:\n - GO111MODULE=off go get golang.org/x/lint/golint\n | dataset_sample\yaml\loft-sh_devpod\vendor\sigs.k8s.io\yaml\.travis.yml | .travis.yml | YAML | 326 | 0.7 | 0 | 0 | awesome-app | 845 | 2024-12-04T20:08:10.813458 | BSD-3-Clause | false | 80c3e7b46ca42256453e99bc0225f319 |
linters:\n # Don't enable any linters by default; just the ones that we explicitly\n # enable in the list below.\n disable-all: true\n enable:\n - bidichk\n - gofmt\n - goimports\n - govet\n - misspell\n - revive\n\n# Configuration for how we run golangci-lint\nrun:\n timeout: 5m\n\nissues:\n # Excluding configuration per-path, per-linter, per-text and per-source\n exclude-rules:\n # These are forks of an upstream package and thus are exempt from stylistic\n # changes that would make pulling in upstream changes harder.\n - path: tempfork/.*\.go\n text: "File is not `gofmt`-ed with `-s` `-r 'interface{} -> any'`"\n - path: util/singleflight/.*\.go\n text: "File is not `gofmt`-ed with `-s` `-r 'interface{} -> any'`"\n\n# Per-linter settings are contained in this top-level key\nlinters-settings:\n # Enable all rules by default; we don't use invisible unicode runes.\n bidichk:\n\n gofmt:\n rewrite-rules:\n - pattern: 'interface{}'\n replacement: 'any'\n\n goimports:\n\n govet:\n # Matches what we use in corp as of 2023-12-07\n enable:\n - asmdecl\n - assign\n - atomic\n - bools\n - buildtag\n - cgocall\n - copylocks\n - deepequalerrors\n - errorsas\n - framepointer\n - httpresponse\n - ifaceassert\n - loopclosure\n - lostcancel\n - nilfunc\n - nilness\n - printf\n - reflectvaluecompare\n - shift\n - sigchanyzer\n - sortslice\n - stdmethods\n - stringintconv\n - structtag\n - testinggoroutine\n - tests\n - unmarshal\n - unreachable\n - unsafeptr\n - unusedresult\n settings:\n printf:\n # List of print function names to check (in addition to default)\n funcs:\n - github.com/tailscale/tailscale/types/logger.Discard\n # NOTE(andrew-d): this doesn't currently work because the printf\n # analyzer doesn't support type declarations\n #- github.com/tailscale/tailscale/types/logger.Logf\n\n misspell:\n\n revive:\n enable-all-rules: false\n ignore-generated-header: true\n rules:\n - name: atomic\n - name: context-keys-type\n - name: defer\n arguments: [[\n # Calling 'recover' at the time a defer is registered (i.e. "defer recover()") has no effect.\n "immediate-recover",\n # Calling 'recover' outside of a deferred function has no effect\n "recover",\n # Returning values from a deferred function has no effect\n "return",\n ]]\n - name: duplicated-imports\n - name: errorf\n - name: string-of-int\n - name: time-equal\n - name: unconditional-recursion\n - name: useless-break\n - name: waitgroup-by-value\n | dataset_sample\yaml\loft-sh_devpod\vendor\tailscale.com\.golangci.yml | .golangci.yml | YAML | 2,735 | 0.95 | 0.038462 | 0.166667 | python-kit | 496 | 2024-03-24T14:13:11.382169 | GPL-3.0 | false | da0364b8833e5d6466c1144d62391843 |
version: 2\nupdates:\n - package-ecosystem: "nuget"\n directory: "/"\n schedule:\n interval: "weekly"\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\dependabot.yml | dependabot.yml | YAML | 109 | 0.7 | 0 | 0 | react-lib | 19 | 2024-01-19T16:07:09.153675 | Apache-2.0 | false | 8b712c615c59a8bc3c801d3056bfccd8 |
name: Bug report\ndescription: Submit a bug report\nlabels: ["bug", "triage"]\nbody:\n - type: markdown\n attributes:\n value: |\n **New to Stability Matrix?**\n For help or advice on using Stability Matrix, try one of the following options instead of opening a GitHub issue:\n - Asking on our [Discord server](https://link.lykos.ai/discord?ref=github-issue-template)\n - Creating a post on [Discussions](https://github.com/LykosAI/StabilityMatrix/discussions)\n \n This template is for reporting bugs experienced within the Stability Matrix app. \n If your issue is regarding Package behavior when running it, or when installing or updating a specific Package, please use the [Package issue template](https://github.com/LykosAI/StabilityMatrix/issues/new/choose) instead.\n \n Make sure to also search the [existing issues](https://github.com/LykosAI/StabilityMatrix/issues) to see if your issue has already been reported.\n - type: textarea\n id: what-happened\n attributes:\n label: What happened?\n description: Give a clear and concise description of what happened. Provide screenshots or videos of UI if necessary. Also tell us, what did you expect to happen?\n placeholder: |\n When dragging a model file into the ... page to import, I expected to see...\n \n Instead, I saw...\n validations:\n required: true\n - type: textarea\n id: how-to-reproduce\n attributes:\n label: Steps to reproduce\n description: Include a minimal step-by-step guide to reproduce the issue if possible.\n placeholder: |\n 1. Open Stability Matrix\n 2. Go to the ... page\n 3. Click on the ... button\n 4. Expected to see ... open, but instead ...\n - type: textarea\n id: app-logs\n attributes:\n label: Relevant logs\n description: Please copy and paste any relevant log output. (This will be automatically formatted, so no need for backticks.)\n render: shell\n - type: input\n id: version\n attributes:\n label: Version\n description: What version of Stability Matrix are you running? (Can be found at the bottom of the settings page)\n placeholder: ex. v2.11.0\n validations:\n required: true\n - type: dropdown\n id: os-platform\n attributes:\n label: What Operating System are you using?\n options:\n - Windows\n - macOS\n - Linux\n - Other\n validations:\n required: true\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\ISSUE_TEMPLATE\1-bug.yml | 1-bug.yml | YAML | 2,485 | 0.95 | 0.096774 | 0.016949 | awesome-app | 469 | 2023-09-07T15:46:20.002657 | Apache-2.0 | false | 4de42ebcf3ee7ad3c2a7651dd4b69f84 |
name: Crash report\ndescription: A crash of Stability Matrix, likely with the "An unexpected error occurred" dialog\nlabels: ["bug", "crash", "triage"]\nbody:\n - type: markdown\n attributes:\n value: |\n This template is for reporting crashes of Stability Matrix, likely with the "An unexpected error occurred" dialog. \n If you are experiencing a different issue, please use the [Bug Report or Package Issue templates](https://github.com/LykosAI/StabilityMatrix/issues/new/choose).\n - type: textarea\n id: what-happened\n attributes:\n label: What happened?\n description: Give a clear and concise description of what happened. Include some minimal steps to reproducible the issue if possible.\n placeholder: |\n 1. Open Stability Matrix\n 2. Go to the "..." page\n 3. Click on the "..." button\n 4. See the crash\n validations:\n required: true\n - type: textarea\n id: exception-details\n attributes:\n label: Exception Details\n description: Please click the "Copy Details" button on the crash dialog and paste the details exactly as formatted here.\n placeholder: |\n ## Exception\n OperationCanceledException: Example Message\n ### Sentry ID\n ```\n bc7da9b2fcc3e3568ceb81a72f3a128d\n ```\n ### Stack Trace\n ```\n at StabilityMatrix.Avalonia.ViewModels.Settings.MainSettingsViewModel.DebugThrowException() in MainSettingsViewModel.cs:line 716\n at CommunityToolkit.Mvvm.Input.RelayCommand.Execute(Object parameter)\n ...\n ```\n - type: input\n id: version\n attributes:\n label: Version\n description: What version of Stability Matrix are you running? (Can be found at the bottom of the settings page)\n placeholder: ex. v2.11.0\n validations:\n required: true\n - type: dropdown\n id: os-platform\n attributes:\n label: What Operating System are you using?\n options:\n - Windows\n - macOS\n - Linux\n - Other\n validations:\n required: true\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\ISSUE_TEMPLATE\2-bug-crash.yml | 2-bug-crash.yml | YAML | 2,078 | 0.95 | 0.034483 | 0.051724 | react-lib | 321 | 2025-06-07T22:54:20.469014 | MIT | false | d15161d04d70d3a024ee8f9f0d2618e0 |
name: Package issue\ndescription: Report an issue with installing, updating, or running a Package\nlabels: ["bug", "area: package", "triage"]\nbody:\n - type: markdown\n attributes:\n value: |\n **Experiencing an issue while running a Package?**\n \n Make sure to also search the GitHub issues of the Package, to see if your issue has already been reported and being worked on by upstream authors.\n - type: textarea\n id: package-details\n attributes:\n label: Package\n description: Provide the name of the Package you are experiencing issues with\n placeholder: ex. `ComfyUI`\n validations:\n required: true\n - type: dropdown\n id: package-issue-phase\n attributes:\n label: When did the issue occur?\n options:\n - Installing the Package\n - Updating the Package\n - Running the Package\n - Other\n validations:\n required: true\n - type: input\n id: hardware\n attributes:\n label: What GPU / hardware type are you using?\n description: Installed dependencies and Package features often depend on the GPU or hardware type you are using.\n placeholder: ex. Nvidia 2080 Super with CUDA, AMD Radeon VII, etc.\n validations:\n required: true\n - type: textarea\n id: what-happened\n attributes:\n label: What happened?\n description: Give a clear and concise description of what happened. Provide screenshots if necessary. Also tell us, what did you expect to happen?\n validations:\n required: true\n - type: textarea\n id: console-output\n attributes:\n label: Console output\n description: Please copy and paste any console output or error messages. For failed install or updates, locate the progress on the bottom left, open the dialog, and click on "More Details" to copy the full console output.\n placeholder: |\n ```\n Unpacking...\n Successfully built lycoris_lora\n Installing collected packages: library, tomlkit, onnx, ml-dtypes, onnxruntime-gpu\n Running setup.py develop for library\n Attempting uninstall: onnx\n Found existing installation: onnx 1.14.1\n ...\n ```\n - type: input\n id: version\n attributes:\n label: Version\n description: What version of Stability Matrix are you running? (Can be found at the bottom of the settings page)\n placeholder: ex. v2.11.0\n validations:\n required: true\n - type: dropdown\n id: os-platform\n attributes:\n label: What Operating System are you using?\n options:\n - Windows\n - macOS\n - Linux\n - Other\n validations:\n required: true\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\ISSUE_TEMPLATE\3-bug-package.yml | 3-bug-package.yml | YAML | 2,674 | 0.85 | 0.051282 | 0.012987 | python-kit | 503 | 2024-11-17T18:42:40.130451 | MIT | false | 9353667cca3a83a8507cfc6f0678d3a6 |
name: Feature or enhancement\ndescription: Submit a proposal for a new Stability Matrix feature or enhancement\nlabels: ["enhancement"]\nbody:\n - type: markdown\n attributes:\n value: |\n Consider first discussing your idea on our [Discord server](https://link.lykos.ai/discord?ref=github-issue-template) to get feedback from the developers and the community.\n - type: textarea\n id: proposal\n attributes:\n label: Proposal\n description: Explain your idea for a new feature or enhancement. Include any relevant details or links to resources like Package documentation.\n validations:\n required: true\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\ISSUE_TEMPLATE\4-feature-request.yml | 4-feature-request.yml | YAML | 635 | 0.95 | 0.133333 | 0 | node-utils | 507 | 2024-07-08T08:16:20.727002 | GPL-3.0 | false | 133b97cd2e3b53df5b97b007531a1969 |
blank_issues_enabled: false\ncontact_links:\n - name: Getting help\n url: https://link.lykos.ai/discord?ref=github-issue-template\n about: Ask questions about using Stability Matrix and get tips on using Packages on our Discord server\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\ISSUE_TEMPLATE\config.yml | config.yml | YAML | 241 | 0.8 | 0 | 0 | awesome-app | 148 | 2023-11-02T07:25:02.057840 | BSD-3-Clause | false | 27acb99a91d5d6dd579242f734654f65 |
name: Automatic Backport\n\non:\n pull_request:\n types: ["closed", "labeled"]\n\njobs:\n backport:\n if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'backport-to-main') == true) }}\n name: Backport PR\n runs-on: ubuntu-latest\n steps:\n # Get the merge target branch to decide mainline number\n # git cherry-pick mainline is 1 for merge to 'dev', else 2\n - name: Get target branch\n run: echo "CP_MAINLINE=$(if [ '${{ github.event.pull_request.base.ref }}' == 'dev' ]; then echo 1; else echo 2; fi)" >> $GITHUB_ENV\n\n - name: Write json\n id: create-json\n uses: jsdaniell/create-json@v1.2.3\n with:\n name: ".backportrc.json"\n json: |\n {\n "targetPRLabels": ["backport"],\n "mainline": ${{ env.CP_MAINLINE }},\n "commitConflicts": "true",\n "prTitle": "[{{sourceBranch}} to {{targetBranch}}] backport: {{sourcePullRequest.title}} ({{sourcePullRequest.number}})"\n }\n\n - name: Backport Action\n uses: sorenlouv/backport-github-action@v9.5.1\n with:\n github_token: ${{ secrets.GITHUB_TOKEN }}\n auto_backport_label_prefix: backport-to-\n\n - name: Info log\n if: ${{ success() }}\n run: cat ~/.backport/backport.info.log\n\n - name: Debug log\n if: ${{ failure() }}\n run: cat ~/.backport/backport.debug.log \n \n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\backport.yml | backport.yml | YAML | 1,481 | 0.8 | 0.113636 | 0.054054 | vue-tools | 98 | 2025-01-21T14:07:31.947055 | BSD-3-Clause | false | d112531ec8fa6968986b4a662256ceda |
name: Build\n\non:\n push:\n branches: [ main ]\n pull_request:\n branches: [ main ]\n\nconcurrency:\n group: build-${{ github.event.pull_request.number || github.ref }}\n cancel-in-progress: true\n\njobs:\n build:\n if: github.repository == 'LykosAI/StabilityMatrix'\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v3\n\n - name: Set up .NET\n uses: actions/setup-dotnet@v3\n with:\n dotnet-version: '9.0.x'\n \n - name: Install dependencies\n run: dotnet restore\n \n - name: Test\n run: dotnet test StabilityMatrix.Tests\n\n - name: Build\n run: >\n dotnet publish ./StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj \n -o out -c Release -r linux-x64 \n --self-contained\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\build.yml | build.yml | YAML | 795 | 0.7 | 0.027778 | 0 | node-utils | 455 | 2024-07-16T16:36:12.907090 | MIT | false | 1a4cc4a593c7fb6737d55bc186e95d8b |
name: "CLA Assistant"\n\non:\n issue_comment:\n types: [created]\n pull_request_target:\n types: [opened,closed,synchronize]\n\n# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings\npermissions:\n actions: write\n contents: write\n pull-requests: write\n statuses: write\n\njobs:\n CLAAssistant:\n if: github.repository == 'LykosAI/StabilityMatrix'\n runs-on: ubuntu-latest\n steps:\n - name: "CLA Assistant"\n if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'\n uses: contributor-assistant/github-action@v2.3.0\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n # the below token should have repo scope and must be manually added by you in the repository's secret\n # This token is required only if you have configured to store the signatures in a remote repository/organization\n PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_CONFIG_ACCESS_TOKEN }}\n with:\n path-to-signatures: 'signatures/version1/cla.json'\n path-to-document: 'https://lykos.ai/cla'\n # branch should not be protected\n branch: 'main'\n allowlist: ionite34,mohnjiles,bot*\n # the followings are the optional inputs - If the optional inputs are not given, then default values will be taken\n remote-organization-name: LykosAI\n remote-repository-name: clabot-config\n custom-allsigned-prcomment: '**CLA Assistant bot** All Contributors have signed the CLA.'\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\cla.yml | cla.yml | YAML | 1,663 | 0.95 | 0.078947 | 0.142857 | python-kit | 157 | 2024-05-30T09:59:18.798387 | GPL-3.0 | false | 4a380fa9610d8fd1f0c9d8a0ba915ad2 |
name: Release\n\npermissions:\n contents: write\n\non:\n workflow_dispatch:\n inputs:\n version:\n type: string\n required: true\n description: Version (Semver without leading v)\n sentry-release:\n type: boolean\n description: Make Sentry Release?\n default: true\n github-release:\n type: boolean\n description: Make GitHub Release?\n default: true\n github-release-draft:\n type: boolean\n description: Mark GitHub Release as Draft?\n default: false\n github-release-prerelease:\n type: boolean\n description: Mark GitHub Release as Prerelease?\n default: false\n auto-update-release:\n type: boolean\n description: Release auto-update?\n default: false\n auto-update-release-mode:\n type: choice\n description: Release auto-update mode\n options:\n - github url\n - upload to b2\n auto-update-release-channel:\n type: choice\n description: Release auto-update channel\n options:\n - stable\n - preview\n - development\n test-release-artifacts:\n type: boolean\n description: "[Debug] Test release artifacts?"\n default: false\n\njobs:\n release-linux:\n name: Release (linux-x64)\n env:\n platform-id: linux-x64\n out-name: StabilityMatrix.AppImage\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n\n - uses: olegtarasov/get-tag@v2.1.2\n if: github.event_name == 'release'\n id: tag_name\n with:\n tagRegex: "v(.*)"\n \n - name: Set Version from Tag\n if: github.event_name == 'release'\n run: |\n echo "Using tag ${{ env.GIT_TAG_NAME }}"\n echo "RELEASE_VERSION=${{ env.GIT_TAG_NAME }}" >> $GITHUB_ENV\n \n - name: Set Version from manual input\n if: github.event_name == 'workflow_dispatch'\n run: |\n echo "Using version ${{ github.event.inputs.version }}"\n echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV\n\n - name: Set up .NET 9\n uses: actions/setup-dotnet@v3\n with:\n # Net 8 needed for PupNet\n dotnet-version: | \n 8.0.x\n 9.0.x\n\n - name: Install PupNet\n run: |\n sudo apt-get -y install libfuse2\n dotnet tool install -g KuiperZone.PupNet\n \n - name: PupNet Build\n env:\n SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n run: pupnet -r linux-x64 -c Release --kind appimage --app-version $RELEASE_VERSION --clean -y\n\n - name: Post Build\n run: mv ./Release/linux-x64/StabilityMatrix.x86_64.AppImage ${{ env.out-name }}\n \n - name: Upload Artifact\n uses: actions/upload-artifact@v4\n with:\n name: StabilityMatrix-${{ env.platform-id }}\n path: ${{ env.out-name }}\n retention-days: 1\n if-no-files-found: error\n \n - name: Create Sentry release\n if: ${{ github.event.inputs.sentry-release == 'true' }}\n uses: getsentry/action-release@v1\n env:\n MAKE_SENTRY_RELEASE: ${{ secrets.SENTRY_PROJECT != '' }}\n SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n SENTRY_ORG: ${{ secrets.SENTRY_ORG }}\n SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}\n with:\n environment: production\n ignore_missing: true\n ignore_empty: true\n version: StabilityMatrix.Avalonia@${{ github.event.inputs.version }}\n\n \n release-windows:\n name: Release (win-x64)\n env:\n platform-id: win-x64\n out-name: StabilityMatrix.exe\n runs-on: windows-latest\n steps:\n - uses: actions/checkout@v3\n\n - uses: olegtarasov/get-tag@v2.1.2\n if: github.event_name == 'release'\n id: tag_name\n with:\n tagRegex: "v(.*)"\n\n - name: Set Version from Tag\n if: github.event_name == 'release'\n run: |\n echo "Using tag ${{ env.GIT_TAG_NAME }}"\n echo "RELEASE_VERSION=${{ env.GIT_TAG_NAME }}" >> $env:GITHUB_ENV\n\n - name: Set Version from manual input\n if: github.event_name == 'workflow_dispatch'\n run: |\n echo "Using version ${{ github.event.inputs.version }}"\n echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $env:GITHUB_ENV\n\n - name: Set up .NET 9\n uses: actions/setup-dotnet@v3\n with:\n dotnet-version: '9.0.x'\n\n - name: Install dependencies\n run: dotnet restore\n\n - name: .NET Publish\n env:\n SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n run: >\n dotnet publish ./StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj\n -o out -c Release -r ${{ env.platform-id }}\n -p:Version=$env:RELEASE_VERSION\n -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true\n -p:PublishReadyToRun=true\n -p:SentryOrg=${{ secrets.SENTRY_ORG }} -p:SentryProject=${{ secrets.SENTRY_PROJECT }}\n -p:SentryUploadSymbols=true -p:SentryUploadSources=true\n\n - name: Post Build\n run: mv ./out/StabilityMatrix.Avalonia.exe ./out/${{ env.out-name }}\n\n - name: Upload Artifact\n uses: actions/upload-artifact@v4\n with:\n name: StabilityMatrix-${{ env.platform-id }}\n path: ./out/${{ env.out-name }}\n retention-days: 1\n if-no-files-found: error\n \n release-macos:\n name: Release (macos-arm64)\n env:\n platform-id: osx-arm64\n app-name: "Stability Matrix.app"\n out-name: "StabilityMatrix-macos-arm64.dmg"\n runs-on: macos-14\n steps:\n - uses: actions/checkout@v3\n\n - uses: olegtarasov/get-tag@v2.1.2\n if: github.event_name == 'release'\n id: tag_name\n with:\n tagRegex: "v(.*)"\n\n - name: Set Version from Tag\n if: github.event_name == 'release'\n run: |\n echo "Using tag ${{ env.GIT_TAG_NAME }}"\n echo "RELEASE_VERSION=${{ env.GIT_TAG_NAME }}" >> $GITHUB_ENV\n\n - name: Set Version from manual input\n if: github.event_name == 'workflow_dispatch'\n run: |\n echo "Using version ${{ github.event.inputs.version }}"\n echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV\n\n - name: Set up .NET 9\n uses: actions/setup-dotnet@v3\n with:\n dotnet-version: '9.0.x'\n\n - name: Install dependencies\n run: dotnet restore -p:PublishReadyToRun=true\n \n - name: Check Version\n run: echo $RELEASE_VERSION\n\n - name: .NET Msbuild (App)\n env:\n SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}\n run: >\n dotnet msbuild ./StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj\n -t:BundleApp -p:UseAppHost=true -p:SelfContained=true\n -p:Configuration=Release -p:RuntimeIdentifier=${{ env.platform-id }}\n -p:Version=$RELEASE_VERSION\n -p:PublishDir=out\n -p:PublishReadyToRun=true\n -p:CFBundleShortVersionString=$RELEASE_VERSION\n -p:CFBundleName="Stability Matrix"\n -p:CFBundleDisplayName="Stability Matrix"\n -p:CFBundleVersion=$RELEASE_VERSION\n -p:SentryOrg=${{ secrets.SENTRY_ORG }} -p:SentryProject=${{ secrets.SENTRY_PROJECT }}\n -p:SentryUploadSymbols=true -p:SentryUploadSources=true\n\n - name: Post Build (App)\n run: mkdir -p signing && mv "./StabilityMatrix.Avalonia/out/Stability Matrix.app" "./signing/${{ env.app-name }}"\n\n - name: Codesign app bundle\n env:\n MACOS_CERTIFICATE: ${{ secrets.PROD_MACOS_CERTIFICATE }}\n MACOS_CERTIFICATE_PWD: ${{ secrets.PROD_MACOS_CERTIFICATE_PWD }}\n MACOS_CERTIFICATE_NAME: ${{ secrets.PROD_MACOS_CERTIFICATE_NAME }}\n MACOS_CI_KEYCHAIN_PWD: ${{ secrets.PROD_MACOS_CI_KEYCHAIN_PWD }}\n run: ./Build/codesign_macos.sh "./signing/${{ env.app-name }}"\n\n - name: Notarize app bundle\n env:\n MACOS_NOTARIZATION_APPLE_ID: ${{ secrets.PROD_MACOS_NOTARIZATION_APPLE_ID }}\n MACOS_NOTARIZATION_TEAM_ID: ${{ secrets.PROD_MACOS_NOTARIZATION_TEAM_ID }}\n MACOS_NOTARIZATION_PWD: ${{ secrets.PROD_MACOS_NOTARIZATION_PWD }}\n run: ./Build/notarize_macos.sh "./signing/${{ env.app-name }}"\n\n - name: Zip Artifact (App)\n working-directory: signing\n run: zip -r -y "../StabilityMatrix-${{ env.platform-id }}-app.zip" "${{ env.app-name }}"\n\n - name: Upload Artifact (App)\n uses: actions/upload-artifact@v4\n with:\n name: StabilityMatrix-${{ env.platform-id }}-app\n path: StabilityMatrix-${{ env.platform-id }}-app.zip\n retention-days: 1\n if-no-files-found: error\n \n - uses: actions/setup-node@v4\n with:\n node-version: '20.11.x'\n \n - name: Install dependencies for dmg creation\n run: brew install graphicsmagick imagemagick && npm install --global create-dmg\n \n - name: Create dmg\n working-directory: signing\n run: >\n create-dmg "${{ env.app-name }}" --overwrite --identity "${{ secrets.PROD_MACOS_CERTIFICATE_NAME }}"\n \n - name: Rename dmg\n working-directory: signing\n run: mv "$(find . -type f -name "*.dmg")" "${{ env.out-name }}"\n \n - name: Zip Artifact (dmg)\n working-directory: signing\n run: zip -r -y "../StabilityMatrix-${{ env.platform-id }}-dmg.zip" "${{ env.out-name }}"\n \n - name: Upload Artifact (dmg)\n uses: actions/upload-artifact@v4\n with:\n name: StabilityMatrix-${{ env.platform-id }}-dmg\n path: StabilityMatrix-${{ env.platform-id }}-dmg.zip\n retention-days: 1\n if-no-files-found: error\n \n publish-release:\n name: Publish GitHub Release\n needs: [ release-linux, release-windows, release-macos ]\n if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.github-release == 'true' }}\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n\n - name: Extract Release Notes\n id: release_notes\n run: |\n RELEASE_NOTES="$(awk -v version="${{ github.event.inputs.version }}" '/## v/{if(p) exit; if($0 ~ version) p=1}; p' CHANGELOG.md)"\n RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"\n RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"\n RELEASE_NOTES="${RELEASE_NOTES//$'\r'/'%0D'}"\n echo "::set-output name=release_notes::$RELEASE_NOTES"\n\n # Downloads all previous artifacts to the current working directory\n - name: Download Artifacts\n uses: actions/download-artifact@v4\n \n # Zip each build (except macos which is already dmg)\n - name: Zip Artifacts\n run: |\n cd StabilityMatrix-win-x64 && zip -r ../StabilityMatrix-win-x64.zip ./. && cd $OLDPWD\n cd StabilityMatrix-linux-x64 && zip -r ../StabilityMatrix-linux-x64.zip ./. && cd $OLDPWD\n unzip "StabilityMatrix-osx-arm64-dmg/StabilityMatrix-osx-arm64-dmg.zip"\n\n - name: Create Github Release\n id: create_release\n uses: softprops/action-gh-release@v1\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n with:\n files: |\n StabilityMatrix-win-x64.zip\n StabilityMatrix-linux-x64.zip\n StabilityMatrix-macos-arm64.dmg\n fail_on_unmatched_files: true\n tag_name: v${{ github.event.inputs.version }}\n body: ${{ steps.release_notes.outputs.release_notes }}\n draft: ${{ github.event.inputs.github-release-draft == 'true' }}\n prerelease: ${{ github.event.inputs.github-release-prerelease == 'true' }} \n \n test-artifacts:\n name: Test Release Artifacts\n needs: [ release-linux, release-windows, release-macos ]\n if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.test-release-artifacts == 'true' }}\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n\n - name: Extract Release Notes\n id: release_notes\n run: |\n RELEASE_NOTES="$(awk -v version="${{ github.event.inputs.version }}" '/## v/{if(p) exit; if($0 ~ version) p=1}; p' CHANGELOG.md)"\n RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"\n RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"\n RELEASE_NOTES="${RELEASE_NOTES//$'\r'/'%0D'}"\n echo "::set-output name=release_notes::$RELEASE_NOTES"\n echo "Release Notes:"\n echo "$RELEASE_NOTES"\n\n # Downloads all previous artifacts to the current working directory\n - name: Download Artifacts\n uses: actions/download-artifact@v4\n\n # Zip each build (except macos which is already dmg)\n - name: Zip Artifacts\n run: |\n cd StabilityMatrix-win-x64 && zip -r ../StabilityMatrix-win-x64.zip ./. && cd $OLDPWD\n cd StabilityMatrix-linux-x64 && zip -r ../StabilityMatrix-linux-x64.zip ./. && cd $OLDPWD\n unzip "StabilityMatrix-osx-arm64-dmg/StabilityMatrix-osx-arm64-dmg.zip"\n\n # Check that the zips and CHANGELOG.md are in the current working directory\n - name: Check files\n run: |\n if [ ! -f StabilityMatrix-win-x64.zip ]; then\n echo "StabilityMatrix-win-x64.zip not found"\n exit 1\n else\n echo "StabilityMatrix-win-x64.zip found"\n sha256sum StabilityMatrix-win-x64.zip\n fi\n if [ ! -f StabilityMatrix-linux-x64.zip ]; then\n echo "StabilityMatrix-linux-x64.zip not found"\n exit 1\n else\n echo "StabilityMatrix-linux-x64.zip found"\n sha256sum StabilityMatrix-linux-x64.zip\n fi\n if [ ! -f StabilityMatrix-macos-arm64.dmg ]; then\n echo "StabilityMatrix-macos-arm64.dmg not found"\n exit 1\n else\n echo "StabilityMatrix-macos-arm64.dmg found"\n sha256sum StabilityMatrix-macos-arm64.dmg\n fi\n if [ ! -f CHANGELOG.md ]; then\n echo "CHANGELOG.md not found"\n exit 1\n fi\n \n publish-auto-update-github:\n name: Publish Auto-Update Release (GitHub)\n needs: [ release-linux, release-windows, release-macos, publish-release ]\n if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.auto-update-release == 'true' && github.event.inputs.auto-update-release-mode == 'github url' }}\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n \n - name: Set Version from manual input\n run: |\n echo "Using version ${{ github.event.inputs.version }}"\n echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $env:GITHUB_ENV\n \n - uses: actions/setup-python@v4\n with:\n python-version: '3.11'\n \n - name: Install Python Dependencies\n run: pip install stability-matrix-tools>=0.3.0 --upgrade\n \n - name: Publish Auto-Update Release\n env:\n SM_B2_API_ID: ${{ secrets.SM_B2_API_ID }}\n SM_B2_API_KEY: ${{ secrets.SM_B2_API_KEY }}\n SM_CF_CACHE_PURGE_TOKEN: ${{ secrets.SM_CF_CACHE_PURGE_TOKEN }}\n SM_CF_ZONE_ID: ${{ secrets.SM_CF_ZONE_ID }}\n SM_SIGNING_PRIVATE_KEY: ${{ secrets.SM_SIGNING_PRIVATE_KEY }}\n run: sm-tools updates publish-matrix-v3 -v ${{ github.event.inputs.version }} -y\n\n publish-auto-update-b2:\n name: Publish Auto-Update Release (B2)\n needs: [ release-linux, release-windows, release-macos ]\n if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.auto-update-release == 'true' && github.event.inputs.auto-update-release-mode == 'upload to b2' }}\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n\n - name: Set Version from manual input\n run: |\n echo "Using version ${{ github.event.inputs.version }}"\n echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $env:GITHUB_ENV\n\n # Downloads all previous artifacts to the current working directory\n - name: Download Artifacts\n uses: actions/download-artifact@v4\n \n # Zip each build (except macos which is already dmg)\n - name: Zip Artifacts\n run: |\n cd StabilityMatrix-win-x64 && zip -r ../StabilityMatrix-win-x64.zip ./. && cd $OLDPWD\n cd StabilityMatrix-linux-x64 && zip -r ../StabilityMatrix-linux-x64.zip ./. && cd $OLDPWD\n unzip "StabilityMatrix-osx-arm64-dmg/StabilityMatrix-osx-arm64-dmg.zip"\n\n - uses: actions/setup-python@v4\n with:\n python-version: '3.11'\n\n - name: Install Python Dependencies\n run: pip install stability-matrix-tools>=0.3.0 --upgrade\n \n # Check that the zips and CHANGELOG.md are in the current working directory\n - name: Check files\n run: |\n if [ ! -f StabilityMatrix-win-x64.zip ]; then\n echo "StabilityMatrix-win-x64.zip not found"\n exit 1\n fi\n if [ ! -f StabilityMatrix-linux-x64.zip ]; then\n echo "StabilityMatrix-linux-x64.zip not found"\n exit 1\n fi\n if [ ! -f StabilityMatrix-macos-arm64.dmg ]; then\n echo "StabilityMatrix-macos-arm64.dmg not found"\n exit 1\n fi\n if [ ! -f CHANGELOG.md ]; then\n echo "CHANGELOG.md not found"\n exit 1\n fi\n\n - name: Publish Auto-Update Release\n env:\n SM_B2_API_ID: ${{ secrets.SM_B2_API_ID }}\n SM_B2_API_KEY: ${{ secrets.SM_B2_API_KEY }}\n SM_CF_CACHE_PURGE_TOKEN: ${{ secrets.SM_CF_CACHE_PURGE_TOKEN }}\n SM_CF_ZONE_ID: ${{ secrets.SM_CF_ZONE_ID }}\n SM_SIGNING_PRIVATE_KEY: ${{ secrets.SM_SIGNING_PRIVATE_KEY }}\n run: >\n sm-tools updates publish-files-v3 -v ${{ github.event.inputs.version }}\n --channel ${{ github.event.inputs.auto-update-release-channel }}\n --changelog CHANGELOG.md\n --win-x64 StabilityMatrix-win-x64.zip\n --linux-x64 StabilityMatrix-linux-x64.zip\n --macos-arm64 StabilityMatrix-macos-arm64.dmg\n -y\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\release.yml | release.yml | YAML | 18,309 | 0.95 | 0.065041 | 0.021028 | vue-tools | 342 | 2023-11-04T16:01:53.104595 | Apache-2.0 | false | 9051b29a6baea1c6bb99e66ac4bf4786 |
name: 'Close stale issues'\n\npermissions:\n issues: write\n pull-requests: write\n\non:\n workflow_dispatch:\n schedule:\n - cron: '30 1 * * *'\n\njobs:\n stale:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/stale@v9\n with:\n stale-issue-message: 'This issue is pending because it has been awaiting a response for 30 days with no activity. Remove the pending label or comment, else this will be closed in 7 days.'\n close-issue-message: 'This issue was closed because it has been pending for 7 days with no activity.'\n only-labels: 'awaiting-feedback'\n stale-issue-label: 'pending'\n exempt-issue-labels: 'planned,milestone,work-in-progress,enhancement,crash'\n days-before-issue-stale: 30\n days-before-issue-close: 7\n days-before-pr-close: -1\n days-before-pr-stale: -1\n operations-per-run: 45\n \n - uses: actions/stale@v9\n with:\n stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove the stale label or comment, else this will be closed in 7 days.'\n close-issue-message: 'This issue was closed because it has been stale for 7 days with no activity.'\n stale-issue-label: 'stale'\n exempt-issue-labels: 'planned,milestone,work-in-progress,enhancement,crash'\n days-before-issue-stale: 60\n days-before-issue-close: 7\n days-before-pr-close: -1\n days-before-pr-stale: -1\n operations-per-run: 45\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\stale.yml | stale.yml | YAML | 1,538 | 0.7 | 0.076923 | 0 | python-kit | 836 | 2025-03-11T21:18:57.561227 | BSD-3-Clause | false | 810ff631ac8712e5f008020da231b030 |
name: Version Bump\n\non:\n workflow_dispatch:\n inputs:\n version_mask:\n type: string\n description: Version Bump Mask\n default: "0.0.1.0"\n required: false\n \n version_overwrite:\n type: string\n description: Version Overwrite Mask\n default: "*.*.*.*"\n required: false\n\njobs:\n version-bump:\n name: Version Bump\n runs-on: windows-latest\n steps:\n - uses: actions/checkout@v3\n \n - name: Setup .NET Core\n uses: actions/setup-dotnet@v2\n with:\n dotnet-version: '8.0.x'\n\n - name: Bump versions\n uses: SiqiLu/dotnet-bump-version@2.0.0\n with:\n version_files: "**/*.csproj"\n version_mask: ${{ github.event.inputs.version_mask }}\n version_overwrite: ${{ github.event.inputs.version_overwrite }}\n github_token: ${{ secrets.GITHUB_TOKEN }}\n | dataset_sample\yaml\LykosAI_StabilityMatrix\.github\workflows\version-bump.yml | version-bump.yml | YAML | 900 | 0.95 | 0 | 0 | react-lib | 814 | 2024-03-12T19:47:51.966858 | Apache-2.0 | false | 80f3fa505acb7976da30e38ae7521256 |
name: automatic\ndisplay-name: SD.Next Web UI\nauthor: vladmandic\n\ndownload:\n steps:\n - uses: git\n with:\n args: clone ${git_repo_url} ${install_dir}\n - uses: git\n with:\n args: checkout ${version_commit_sha}\n\ninstall:\n steps:\n - name: Install PyTorch (CUDA)\n uses: venv-run\n if: system.has_nvidia_gpu\n with:\n args:\n - pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118\n - pip install xformers\n\n - name: Install PyTorch (DirectML)\n uses: venv-run\n if: not system.has_nvidia_gpu and system.has_amd_gpu\n with:\n args: pip install torch-directml\n\n - name: Install Requirements\n uses: venv-run\n with:\n args: pip install -r requirements.txt\n | dataset_sample\yaml\LykosAI_StabilityMatrix\StabilityMatrix\Assets\automatic_vladmandic.sm-package.yml | automatic_vladmandic.sm-package.yml | YAML | 801 | 0.95 | 0.060606 | 0 | node-utils | 845 | 2024-03-21T12:42:47.571025 | BSD-3-Clause | false | 7b8f80f48d6ca614d42a46a6a0d4f193 |
# Configuration for probot-stale - https://github.com/probot/stale\n\n# Number of days of inactivity before an Issue or Pull Request becomes stale\ndaysUntilStale: 152\n\n# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.\n# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.\ndaysUntilClose: 28\n\n# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)\nonlyLabels: []\n\n# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable\nexemptLabels:\n - "Priority: P0"\n - "Priority: P1"\n - "Priority: P2"\n - "Severity: S0"\n - "Severity: S1"\n - "Progress: dev in progress"\n - "Progress: PR in progress"\n - "Progress: done"\n - "B2B: GraphQL"\n - "Progress: PR Created"\n - "PAP"\n - "Project: Login as Customer"\n - "Project: GraphQL"\n\n# Set to true to ignore issues in a project (defaults to false)\nexemptProjects: false\n\n# Set to true to ignore issues in a milestone (defaults to false)\nexemptMilestones: false\n\n# Set to true to ignore issues with an assignee (defaults to false)\nexemptAssignees: false\n\n# Label to use when marking as stale\nstaleLabel: "stale issue"\n\n# Comment to post when marking as stale. Set to `false` to disable\nmarkComment: >\n This issue has been automatically marked as stale because it has not had\n recent activity. It will be closed after 28 days if no further activity occurs.\n Is this issue still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?\n Thank you for your contributions!\n# Comment to post when removing the stale label.\n# unmarkComment: >\n# Your comment here.\n\n# Comment to post when closing a stale Issue or Pull Request.\n# closeComment: >\n# Your comment here.\n\n# Limit the number of actions per hour, from 1-30. Default is 30\nlimitPerRun: 30\n\n# Limit to only `issues` or `pulls`\nonly: issues\n\n# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':\n# pulls:\n# daysUntilStale: 30\n# markComment: >\n# This pull request has been automatically marked as stale because it has not had\n# recent activity. It will be closed if no further activity occurs. Thank you\n# for your contributions.\n\n# issues:\n# exemptLabels:\n# - confirmed\n | dataset_sample\yaml\magento_magento2\.github\stale.yml | stale.yml | YAML | 2,359 | 0.8 | 0.084507 | 0.508772 | node-utils | 365 | 2024-06-13T07:42:25.050175 | Apache-2.0 | false | 4950f409478a4a4c46452d42c5cfff1a |
# http://www.appveyor.com/docs/appveyor-yml\n\nbranches:\n only:\n - develop\n - main\n - /v\d*\.\d*\.\d*/\n\nenvironment:\n # bad, but without this, gitversion doesn't work anymore\n IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1\n azure-key-vault-url:\n secure: 1mKS/HfCVq+iYNRVSrrN8NEowOkKt3knrpMzw+SOy3g=\n azure-key-vault-client-id:\n secure: JfSqzmsJdXB6uIxttCRoQw1NygwxqXHDj9uIqQnWOb9VCnQYlRPlAnxgW0yTSX4b\n azure-key-vault-tenant-id:\n secure: FxjkcqtpulfpDpfSAu4onaLVP/H1S1ORRCQCqsZkDC6YhCSmFoMxYNsWv5uGe3ah\n azure-key-vault-client-secret:\n secure: CUpRJxMLeUZwNPMcqI0wECaWfy5AMnWn1UZhBd9WnQ3Z16lJP1Vzrkf24mccbhUD\n azure-key-vault-certificate:\n secure: BSPdW2TgnQtoQXXbeDECug==\n\nimage: Visual Studio 2022\ntest: false\n\npull_requests:\n do_not_increment_build_number: false\n\ninstall:\n # Appveyor uses git checkout -qf FETCH_HEAD but all GitVersion versions above 5.6.3 doesn't support this detached header\n # This is a workaround for this issue\n - ps: |\n if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -ne "")\n {\n git checkout -qf $($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT)\n }\n - ps: Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'\n - ps: ./dotnet-install.ps1 -Version 8.0.401 -InstallDir "C:\Program Files\dotnet"\n\nbuild_script:\n - ps: dotnet --info\n - ps: gitversion /version\n - ps: .\build.ps1 --target=ci --verbosity=diagnostic\n\nafter_build:\n - ps: gci -Filter *.trx -Path .\TestResults\ | % { (New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_.FullName)) }\n\nartifacts:\n - path: \Publish\*.*\n\nnuget:\n disable_publish_on_pr: true\n\nskip_commits:\n files:\n - '**/*.md'\n | dataset_sample\yaml\MahApps_MahApps.Metro\appveyor.yml | appveyor.yml | YAML | 1,742 | 0.8 | 0.035714 | 0.086957 | python-kit | 183 | 2024-08-27T17:05:17.343647 | MIT | false | 029f1647aa39f7ad7f98c4bb73e0242d |
assembly-versioning-scheme: Major\nassembly-file-versioning-scheme: MajorMinorPatchTag\nmode: ContinuousDeployment\nnext-version: 3.0.0\nbranches:\n master:\n regex: ^main\n mode: ContinuousDeployment\n tag: rc\n prevent-increment-of-merged-branch-version: true\n track-merge-target: false\n is-release-branch: true\n develop:\n mode: ContinuousDeployment\n tag: alpha\n prevent-increment-of-merged-branch-version: true\n track-merge-target: true\n pull-request:\n mode: ContinuousDelivery\nignore:\n sha: []\n | dataset_sample\yaml\MahApps_MahApps.Metro\GitVersion.yml | GitVersion.yml | YAML | 526 | 0.7 | 0 | 0 | node-utils | 39 | 2024-05-09T12:19:45.848318 | MIT | false | 05eb66a37c80dac3c367d096997c2dd7 |
version: build-{build}~branch-{branch}\n\nclone_depth: 1\n\nenvironment:\n OPENSSL_ROOT_DIR: C:/OpenSSL-v32-Win64\n\nbuild_script:\n # dump some system info\n - echo processor='%PROCESSOR_IDENTIFIER%' , processor count= %NUMBER_OF_PROCESSORS%\n - cd %APPVEYOR_BUILD_FOLDER%\n # Disable unneeded submodules for the faster build\n - git config submodule.storage/columnstore/columnstore.update none\n - git config submodule.storage/maria/libmarias3.update none\n - git config submodule.storage/rocksdb/rocksdb.update none\n - git config submodule.wsrep-lib.update none\n # Build minimal configuration\n - mkdir _build\n - cd _build\n - set BUILD_TYPE=MinSizeRel\n - set PATH=%OPENSSL_ROOT_DIR%;%PATH%\n - set GENERATOR=-GNinja\n - call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"\n - cmake -E time cmake %GENERATOR% .. -DWITH_SSL=system -DHAVE_OPENSSL_APPLINK_C=1 -DOPENSSL_ROOT_DIR=%OPENSSL_ROOT_DIR% -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DMYSQL_MAINTAINER_MODE=ERR -DFAST_BUILD=1 -DBISON_EXECUTABLE=C:\cygwin64\bin\bison.exe -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_FEEDBACK=NO\n - set /A jobs=2*%NUMBER_OF_PROCESSORS%\n - cmake -E time cmake --build . -j %jobs% --config %BUILD_TYPE% --target minbuild\n\ntest_script:\n - set PATH=C:\Strawberry\perl\bin;%OPENSSL_ROOT_DIR%;%PATH%;C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\n - cd %APPVEYOR_BUILD_FOLDER%\_build\mysql-test\n - set /A parallel=4*%NUMBER_OF_PROCESSORS%\n - perl mysql-test-run.pl --force --max-test-fail=10 --retry=2 --parallel=%parallel% --testcase-timeout=4 --suite=main --skip-test-list=%APPVEYOR_BUILD_FOLDER%\win\appveyor_skip_tests.txt --mysqld=--loose-innodb-flush-log-at-trx-commit=2\n\nskip_commits:\n files:\n - debian/\n - '**/*.sh'\n\nbranches:\n only:\n - /bb-/\n - /\d+\.\d+$/\n - main\n\nimage: Visual Studio 2022\n | dataset_sample\yaml\MariaDB_server\appveyor.yml | appveyor.yml | YAML | 1,833 | 0.8 | 0.022222 | 0.078947 | vue-tools | 12 | 2024-04-21T18:47:33.741918 | GPL-3.0 | false | 29379afcc05d755381c4a10baefb4d40 |
version: 2\nupdates:\n - package-ecosystem: "github-actions"\n directory: "/"\n schedule:\n interval: "weekly"\n groups:\n actions-deps:\n patterns:\n - "*"\n - package-ecosystem: "nuget"\n directories:\n - "/src/*"\n schedule:\n interval: "weekly"\n groups:\n all-nuget-updates:\n patterns:\n - "*"\n | dataset_sample\yaml\marticliment_UniGetUI\.github\dependabot.yml | dependabot.yml | YAML | 359 | 0.8 | 0 | 0 | node-utils | 17 | 2025-05-11T22:42:09.081714 | BSD-3-Clause | false | 2dc905053c43f4d689a51b8a6085b934 |
# These are supported funding model platforms\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: martinet101\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\notechie: # Replace with a single Otechie username\nlfx_crowdfunding: # Replace with a single LFX Crowdfunding project name e.g., cloud-foundry\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n | dataset_sample\yaml\marticliment_UniGetUI\.github\FUNDING.yml | FUNDING.yml | YAML | 775 | 0.8 | 0 | 0.083333 | react-lib | 988 | 2024-12-19T21:53:55.369537 | GPL-3.0 | false | 26a9d0abae177023f53dcb844a7c1013 |
name: '🐞 Report a bug or an issue'\ndescription: Report issues or unexpected behaviors.\ntitle: "[BUG] (Enter your description here)"\nlabels: ["bug"]\nassignees: marticliment\nbody:\n - type: checkboxes\n attributes:\n label: Please confirm these before moving forward\n description: Please confirm the following before posting your issue.\n options:\n - label: I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue.\n required: true\n - label: I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/marticliment/WingetUI/releases/).\n required: true\n - label: I have checked the [FAQ](https://github.com/marticliment/WingetUI#frequently-asked-questions) section for solutions.\n required: true\n - label: This issue is about a bug (if it is not, please use the [correct template](https://github.com/marticliment/WingetUI/issues/new/choose)).\n required: true\n - type: input\n attributes:\n label: UniGetUI Version\n placeholder: 'x.y.z (e.g., 3.1.0)'\n validations:\n required: true\n - type: input\n attributes:\n label: Windows version, edition, and architecture\n placeholder: Windows 11 Pro 10.0.22000.0 x64\n validations:\n required: true\n - type: textarea\n attributes:\n label: Describe your issue\n placeholder: Explain the issue you are experiencing, providing as many details as possible.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Steps to reproduce the issue\n placeholder: How can this issue be reproduced? List here, if known, the steps followed before this issue appeared.\n validations:\n required: false\n - type: textarea\n attributes:\n label: UniGetUI Log\n render: "text"\n placeholder: Paste your UniGetUI logs here. Click the button on the bottom-left corner of UniGetUI -> UniGetUI Log.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Package Managers Logs\n render: "text"\n placeholder: Paste your Package Manager logs here. Click the button on the bottom-left corner of UniGetUI -> Package Manager logs.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Relevant information\n placeholder: Other relevant information about this issue. Perhaps you have some special settings enabled or any other detail that could be related.\n validations:\n required: false\n - type: textarea\n attributes:\n label: Screenshots and videos\n placeholder: If applicable, please post here a video or a screenshot of the issue.\n validations:\n required: false\n | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\bug-issue.yml | bug-issue.yml | YAML | 2,750 | 0.95 | 0.057971 | 0 | vue-tools | 925 | 2024-01-07T12:20:25.840178 | MIT | false | 81b8cfcb99e4a6a51beca2149f49f193 |
blank_issues_enabled: false\n\ncontact_links:\n - name: 📧 Contact me privately by email\n url: https://marticliment.com/contact\n about: Please use only if the issue (for example, a vulnerability) cannot be posted publicly\n - name: 💬 Having doubts or questions?\n url: https://github.com/marticliment/UniGetUI/discussions/new/choose\n about: Create a discussion and get help from other members of the community | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\config.yml | config.yml | YAML | 423 | 0.8 | 0.25 | 0 | python-kit | 962 | 2024-11-06T18:16:15.976966 | Apache-2.0 | false | e1eb8497afb8c288351052081bda307e |
name: '🚧 Suggest an improvement for an existing feature'\ndescription: Propose an improvement to UniGetUI.\ntitle: "[IMPROVEMENT] (Enter your description here)"\nlabels: ["enhancement"]\nassignees: marticliment\nbody:\n - type: checkboxes\n attributes:\n label: Please confirm these before moving forward.\n description: Please confirm the following before posting your issue.\n options:\n - label: I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue.\n required: true\n - label: This improvement refers to an existing feature. If you want to suggest a new feature, please use [this template](https://github.com/marticliment/WingetUI/issues/new?assignees=marticliment&labels=new-feature&projects=&template=feature-request.yml&title=%5BFEATURE+REQUEST%5D+%28Enter+your+description+here%29).\n required: true\n - label: This improvement is not a bug. If you want to report a bug, please use [this template](https://github.com/marticliment/WingetUI/issues/new?assignees=marticliment&labels=bug&projects=&template=bug-issue.yml&title=%5BBUG%5D+%28Enter+your+description+here%29).\n required: true\n - type: textarea\n attributes:\n label: Describe the improvement\n placeholder: Explain how you see this enhancement, providing as many details as possible.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Describe how this improvement could help users\n placeholder: For what would it be useful?\n validations:\n required: true\n | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\enhancement-improvement.yml | enhancement-improvement.yml | YAML | 1,596 | 0.95 | 0.068966 | 0 | vue-tools | 938 | 2024-09-25T04:30:26.215785 | BSD-3-Clause | false | 1c8efd0e5723472a8211e6fa929c848e |
name: '💡 Propose a new feature'\ndescription: Propose a new feature that could be useful in UniGetUI.\ntitle: "[FEATURE REQUEST] (Enter your description here)"\nlabels: ["new-feature"]\nassignees: marticliment\nbody:\n - type: checkboxes\n attributes:\n label: Please confirm these before moving forward.\n description: Please confirm the following before posting your issue.\n options:\n - label: I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue.\n required: true\n - label: This proposal is a completely new feature. If you want to suggest an improvement or an enhancement, please use [this template](https://github.com/marticliment/WingetUI/issues/new?assignees=marticliment&labels=enhancement&projects=&template=enhancement-improvement.yml&title=%5BENHANCEMENT%5D+%28Enter+your+description+here%29).\n required: true\n - type: textarea\n attributes:\n label: Describe the new feature\n placeholder: Explain how you see this new feature, providing as many details as possible.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Describe how this new feature could help users\n placeholder: For what would it be useful?\n validations:\n required: true\n | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\feature-request.yml | feature-request.yml | YAML | 1,313 | 0.95 | 0.037037 | 0 | python-kit | 942 | 2023-09-13T14:57:17.129628 | BSD-3-Clause | false | e2bc4b4f09826b8c1d47c2ac0e708ba6 |
name: '🚑 Report a crash or a hang'\ndescription: UniGetUI is not launching, is hard-crashing, or is hanging at some point.\ntitle: "[CRASH] (Enter your description here)"\nlabels: ["bug", "important"]\nassignees: marticliment\nbody:\n - type: checkboxes\n attributes:\n label: Please confirm these before moving forward.\n description: Please confirm the following before posting your issue.\n options:\n - label: I have tried deleting a folder named `UniGetUI` under `%UserProfile%\AppData\Local\UniGetUI`.\n required: true\n - label: I have tried reinstalling UniGetUI.\n required: true\n - label: I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/marticliment/WingetUI/releases/).\n required: true\n - type: textarea\n attributes:\n label: Describe your crash\n placeholder: What were you doing when this happened?\n validations:\n required: true\n - type: textarea\n attributes:\n label: Logs (if possible)\n placeholder: If you get an error report or a message, please post it here.\n render: "text"\n validations:\n required: false\n - type: textarea\n attributes:\n label: More details\n placeholder: Do you have any other valuable information about this issue?\n validations:\n required: false\n | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\hard-crash.yml | hard-crash.yml | YAML | 1,367 | 0.95 | 0.027778 | 0 | python-kit | 890 | 2025-06-25T23:15:32.087090 | GPL-3.0 | false | 80fd1a5f21002211e618300272582d00 |
name: '🧩 Report an issue with Widgets for UniGetUI'\ndescription: Report issues or unexpected behaviors with Widgets for UniGetUI.\ntitle: "[WIDGETS BUG] (Enter your description here)"\nlabels: ["bug", "widgets-for-unigetui"]\nassignees: marticliment\nbody:\n - type: checkboxes\n attributes:\n label: Please confirm these before moving forward\n description: Please confirm the following before posting your issue.\n options:\n - label: I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue.\n required: true\n - label: I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/marticliment/WingetUI/releases/).\n required: true\n - label: I have checked the [FAQ](https://github.com/marticliment/WingetUI#frequently-asked-questions) section for solutions.\n required: true\n - label: This issue is about a bug (if it is not, please use the [correct template](https://github.com/marticliment/WingetUI/issues/new/choose)).\n required: true\n - type: input\n attributes:\n label: UniGetUI Version\n placeholder: 'x.y.z (e.g., 3.1.0)'\n validations:\n required: true\n - type: input\n attributes:\n label: Widgets for UniGetUI Version\n placeholder: 'x.y.z.w (e.g., 0.6.1.0)'\n validations:\n required: true\n - type: input\n attributes:\n label: Windows version, edition, and architecture\n placeholder: Windows 11 Pro 10.0.22000.0 x64\n validations:\n required: true\n - type: textarea\n attributes:\n label: Describe your issue\n placeholder: Explain the issue you are experiencing, providing as many details as possible.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Steps to reproduce the issue\n placeholder: How can this issue be reproduced? List here, if known, the steps followed before this issue appeared.\n validations:\n required: false\n - type: textarea\n attributes:\n label: UniGetUI Log\n render: "text"\n placeholder: Paste your UniGetUI logs here. Click the button on the bottom-left corner of UniGetUI -> UniGetUI Log.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Package Managers Logs\n render: "text"\n placeholder: Paste your Package Manager logs here. Click the button on the bottom-left corner of UniGetUI -> Package Manager logs.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Relevant information\n placeholder: Other relevant information about this issue. Perhaps you have some special settings enabled or any other detail that could be related.\n validations:\n required: false\n - type: textarea\n attributes:\n label: Screenshots and videos\n placeholder: If applicable, please post a video or a screenshot of the issue here.\n validations:\n required: false\n | dataset_sample\yaml\marticliment_UniGetUI\.github\ISSUE_TEMPLATE\widgets-issue.yml | widgets-issue.yml | YAML | 2,982 | 0.95 | 0.106667 | 0 | react-lib | 213 | 2024-07-13T17:22:36.506176 | GPL-3.0 | false | 42b4b2b92c303127961a7ed7bd9588a8 |
# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: "CodeQL"\n\non:\n schedule:\n - cron: '0 0 * * 1'\n workflow_dispatch:\n\njobs:\n analyze:\n name: Analyze (${{ matrix.language }})\n # Runner size impacts CodeQL analysis time. To learn more, please see:\n # - https://gh.io/recommended-hardware-resources-for-running-codeql\n # - https://gh.io/supported-runners-and-hardware-resources\n # - https://gh.io/using-larger-runners (GitHub.com only)\n # Consider using larger runners or machines with greater resources for possible analysis time improvements.\n runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}\n timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}\n permissions:\n # required for all workflows\n security-events: write\n\n # required to fetch internal or private CodeQL packs\n packages: read\n\n # only required for workflows in private repositories\n actions: read\n contents: read\n\n strategy:\n fail-fast: false\n matrix:\n include:\n - language: csharp\n build-mode: none\n - language: python\n build-mode: none\n # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'\n # Use `c-cpp` to analyze code written in C, C++ or both\n # Use 'java-kotlin' to analyze code written in Java, Kotlin or both\n # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both\n # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,\n # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.\n # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how\n # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages\n steps:\n - name: Checkout repository\n uses: actions/checkout@v4\n\n # Initializes the CodeQL tools for scanning.\n - name: Initialize CodeQL\n uses: github/codeql-action/init@v3\n with:\n languages: ${{ matrix.language }}\n build-mode: ${{ matrix.build-mode }}\n # If you wish to specify custom queries, you can do so here or in a config file.\n # By default, queries listed here will override any specified in a config file.\n # Prefix the list here with "+" to use these queries and those in the config file.\n\n # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs\n # queries: security-extended,security-and-quality\n\n # If the analyze step fails for one of the languages you are analyzing with\n # "We were unable to automatically build your code", modify the matrix above\n # to set the build mode to "manual" for that language. Then modify this step\n # to build your code.\n # ℹ️ Command-line programs to run using the OS shell.\n # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun\n - if: matrix.build-mode == 'manual'\n shell: bash\n run: |\n echo 'If you are using a "manual" build mode for one or more of the' \\n 'languages you are analyzing, replace this with the commands to build' \\n 'your code, for example:'\n echo ' make bootstrap'\n echo ' make release'\n exit 1\n\n - name: Perform CodeQL Analysis\n uses: github/codeql-action/analyze@v3\n with:\n category: "/language:${{matrix.language}}"\n | dataset_sample\yaml\marticliment_UniGetUI\.github\workflows\codeql.yml | codeql.yml | YAML | 4,363 | 0.95 | 0.206522 | 0.46988 | vue-tools | 950 | 2025-02-19T09:10:37.365242 | BSD-3-Clause | false | 93ee6aa8cff85b8dfb32689b1309f34a |
name: Tolgee CI\n\non:\n schedule:\n - cron: 0 0 * * *\n workflow_dispatch:\njobs:\n load-translations:\n if: github.repository == 'marticliment/UniGetUI'\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout repository\n uses: actions/checkout@v4\n \n - name: Download Tolgee translations\n env:\n TOLGEE_KEY: "${{ secrets.TOLGEE_TOKEN }}"\n run: |\n cd scripts\n python download_translations.py --autocommit\n \n - name: Create Pull Request\n uses: peter-evans/create-pull-request@v7\n with:\n delete-branch: true\n base: main\n token: "${{ secrets.REPO_SCOPED_TOKEN }}"\n labels: tolgee-ci\n title: "Load translations from Tolgee"\n body: ""\n assignees: marticliment\n author: "Martí Climent <marticlilop@gmail.com>"\n commit-message: |\n Load updated translations from Tolgee\n Co-authored-by: Martí Climent from the multiverse <121457539+martinet101@users.noreply.github.com>\n branch: pull-request/update-translation\n | dataset_sample\yaml\marticliment_UniGetUI\.github\workflows\update-tolgee.yml | update-tolgee.yml | YAML | 1,108 | 0.7 | 0.027027 | 0 | python-kit | 475 | 2024-11-21T08:41:41.177588 | Apache-2.0 | false | 5ddf0b1e4fdde10bacc1b51c3acc2375 |
name: Publish prereleases to WinGet\n\non:\n release:\n types: [published] # Trigger on published release (includes prereleases)\n workflow_dispatch:\n\njobs:\n publish:\n if: github.event.release.prerelease == true # Ensure this only runs for prereleases\n runs-on: ubuntu-latest\n\n steps:\n - name: Publish to WinGet\n uses: vedantmgoyal9/winget-releaser@3e78d7ff0f525445bca5d6a989d31cdca383372e\n with:\n identifier: MartiCliment.UniGetUI.Pre-Release\n installers-regex: 'UniGetUI\.Installer\.exe$'\n version: ${{ github.event.release.tag_name }}\n token: ${{ secrets.WINGET_TOKEN }}\n | dataset_sample\yaml\marticliment_UniGetUI\.github\workflows\winget-prerelease.yml | winget-prerelease.yml | YAML | 641 | 0.8 | 0.1 | 0 | node-utils | 35 | 2023-09-18T15:29:46.442598 | GPL-3.0 | false | b10fbada87585db9fcac4f5d900875b1 |
name: Publish stable releases to WinGet\non:\n release:\n types: [released]\n workflow_dispatch:\n\njobs:\n publish:\n runs-on: ubuntu-latest\n steps:\n - uses: vedantmgoyal9/winget-releaser@3e78d7ff0f525445bca5d6a989d31cdca383372e\n with:\n identifier: MartiCliment.UniGetUI\n installers-regex: 'UniGetUI\.Installer\.exe$'\n version: ${{ github.event.release.tag_name }}\n token: ${{ secrets.WINGET_TOKEN }}\n | dataset_sample\yaml\marticliment_UniGetUI\.github\workflows\winget-stable.yml | winget-stable.yml | YAML | 454 | 0.7 | 0 | 0 | react-lib | 97 | 2024-10-02T18:30:54.716340 | MIT | false | c125c25c46b9fcaa201d992a6c0c2706 |
image:\n file: .gitpod.Dockerfile\n\nports:\n - port: 31244\n - port: 31245\n - port: 33034\n - port: 33035\n - port: 33036\n - port: 33037\n - port: 33038\n\ntasks:\n - init: cargo build\n | dataset_sample\yaml\massalabs_massa\.gitpod.yml | .gitpod.yml | YAML | 184 | 0.7 | 0 | 0 | python-kit | 414 | 2023-10-05T14:44:31.600444 | GPL-3.0 | false | f6ec35fca72798a00daf63f98d10d59c |
coverage:\n range: 50..90 # coverage lower than 50 is red, higher than 90 green, between color code\n\n status:\n project: # settings affecting project coverage\n default:\n target: 0 # auto % coverage target\n threshold: 5% # allow for 5% reduction of coverage without failing\n\n # do not run coverage on patch nor changes\n patch: false\n | dataset_sample\yaml\massalabs_massa\codecov.yml | codecov.yml | YAML | 365 | 0.8 | 0.090909 | 0.111111 | vue-tools | 299 | 2024-02-03T18:10:35.347601 | BSD-3-Clause | false | 422756969e14cc40a0bac8a6cc3550d6 |
name: CD\n\non:\n push:\n tags:\n - TEST.*\n - DEVN.*\n - MAIN.*\n - SECU.*\n\nenv:\n CARGO_TERM_COLOR: always\n RUST_BACKTRACE: full\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n release:\n strategy:\n matrix:\n os: [ubuntu-latest, macOS-latest, windows-latest]\n platform: [x86_64, arm64]\n include:\n - os: ubuntu-latest\n platform: x86_64\n target: x86_64-unknown-linux-gnu\n name: release_linux.tar.gz\n - os: ubuntu-latest\n platform: arm64\n target: aarch64-unknown-linux-gnu\n name: release_linux_arm64.tar.gz\n - os: windows-latest\n platform: x86_64\n target: x86_64-pc-windows-gnu\n name: release_windows.zip\n - os: macOS-latest\n platform: x86_64\n target: x86_64-apple-darwin\n name: release_macos.tar.gz\n - os: macOS-latest\n platform: arm64\n target: aarch64-apple-darwin\n name: release_macos_aarch64.tar.gz\n exclude:\n - os: windows-latest\n platform: arm64\n runs-on: ${{ matrix.os }}\n steps:\n - uses: actions/checkout@v3\n with:\n submodules: "recursive"\n - uses: ilammy/setup-nasm@v1\n - uses: actions-rs/toolchain@v1\n with:\n profile: minimal\n toolchain: 1.81.0\n target: ${{ matrix.target }}\n override: true\n - uses: Swatinem/rust-cache@v2\n - uses: actions-rs/cargo@v1\n if: matrix.platform != 'arm64'\n with:\n command: build\n args: --profile release_prebuilt\n - uses: actions-rs/cargo@v1\n if: matrix.platform == 'arm64'\n with:\n use-cross: true\n command: build\n args: --profile release_prebuilt --target ${{ matrix.target }}\n - name: Package\n shell: bash\n run: |\n mkdir massa && cd massa && mkdir massa-node && mkdir massa-client\n if [[ "${{ matrix.platform }}" == "arm64" ]]\n then\n cp -v ../target/${{ matrix.target }}/release_prebuilt/massa-node massa-node/massa-node\n cp -v ../target/${{ matrix.target }}/release_prebuilt/massa-client massa-client/massa-client\n else\n cp -v ../target/release_prebuilt/massa-node massa-node/massa-node\n cp -v ../target/release_prebuilt/massa-client massa-client/massa-client\n fi\n cp -rv ../massa-node/config massa-node/config\n cp -rv ../massa-node/base_config massa-node/base_config\n cp -rv ../massa-node/storage massa-node/storage\n cp -rv ../massa-client/config massa-client/config\n cp -rv ../massa-client/base_config massa-client/base_config\n cd ..\n if [[ "${{ matrix.os }}" == "windows-latest" ]]\n then\n 7z a massa_${GITHUB_REF/refs\/tags\//}_${{ matrix.name }} massa\n else\n tar czvf massa_${GITHUB_REF/refs\/tags\//}_${{ matrix.name }} massa\n fi\n cd -\n - name: Upload ${{ matrix.os }}_${{ matrix.platform }} artifacts\n uses: actions/upload-artifact@v4\n with:\n name: massa_artifacts_${{ matrix.name }}\n path: |\n massa_*.zip\n massa_*.tar.gz\n if-no-files-found: error\n - name: Publish ${{ matrix.os }}_${{ matrix.platform }} artifacts\n uses: softprops/action-gh-release@v1\n with:\n files: |\n massa_*.zip\n massa_*.tar.gz\n\n checksum:\n needs: release\n runs-on: ubuntu-latest\n continue-on-error: true\n steps:\n - name: Download all artifacts\n uses: actions/download-artifact@v4\n with:\n path: artifacts\n - name: Move all artifacts to workspace\n run: |\n source_directory="artifacts"\n release_directory="${{ github.workspace }}"\n zip_pattern="massa_*.zip"\n tar_pattern="massa_*.tar.gz"\n\n mkdir -p "$release_directory"\n find "$source_directory" -type f \( -name "$zip_pattern" -o -name "$tar_pattern" \) -exec mv -t "$release_directory" {} +\n - name: Generate checksums file\n uses: jmgilman/actions-generate-checksum@v1\n with:\n method: sha256\n patterns: |\n massa_*.zip\n massa_*.tar.gz\n output: checksums.txt\n - name: Publish checksums file\n uses: softprops/action-gh-release@v1\n with:\n files: |\n checksums.txt\n | dataset_sample\yaml\massalabs_massa\.github\workflows\cd.yml | cd.yml | YAML | 4,588 | 0.8 | 0.034965 | 0 | vue-tools | 173 | 2023-12-14T13:21:29.276331 | MIT | false | fbbafd46b8f77c5ef17a982e955f3522 |
name: Check dead links\n\non:\n pull_request:\n branches:\n - main\n schedule:\n - cron: '0 10 * * 6'\n\njobs:\n markdown-link-check:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - name: Use Node.js\n uses: actions/setup-node@v4\n with:\n node-version: 18\n - name: Install markdown-link-check\n run: npm install -g markdown-link-check\n - name: Check links in markdown files\n run: |\n find . \( -name '*.md' -o -name '*.mdx' \) \\n -exec markdown-link-check -v -c .github/workflows/config/link-check.json --progress {} \; 2>&1 | tee linkcheck.out\n grep -F -wc "[✖] |ERROR" ./linkcheck.out && exit 1 || true\n | dataset_sample\yaml\massalabs_massa\.github\workflows\link-check.yml | link-check.yml | YAML | 713 | 0.7 | 0 | 0 | vue-tools | 300 | 2023-09-18T23:58:37.204532 | MIT | false | d5149d440c33ff69e7bf95fc263bba75 |
name: Security audit\non:\n push:\n branches: [main]\n paths:\n - '**/Cargo.toml'\n - '**/Cargo.lock'\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n security_audit:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v1\n # - uses: actions-rs/audit-check@v1\n # with:\n # token: ${{ secrets.GITHUB_TOKEN }}\n | dataset_sample\yaml\massalabs_massa\.github\workflows\security-audit.yml | security-audit.yml | YAML | 406 | 0.8 | 0 | 0.166667 | awesome-app | 906 | 2024-02-27T14:07:33.932252 | BSD-3-Clause | false | 632418d1791b3445e91df6d8b85102ab |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.