├── .github └── CODEOWNERS ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── NOTICE ├── README.md └── templates └── ort-scan.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @tsteenbe 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /templates/ort-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/ort-ci-gitlab/HEAD/templates/ort-scan.yml --------------------------------------------------------------------------------