├── .gitignore ├── 0._CS_Contributor_License_Agreement.md ├── 1._Community_Specification_License-v1.md ├── 2._Scope.md ├── 3._Notices.md ├── 4._License.md ├── 5._Governance.md ├── 6._Contributing.md ├── 7._CS_Template.md ├── 8._Code_of_Conduct.md └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: CC0-1.0 2 | 3 | *.swp 4 | -------------------------------------------------------------------------------- /0._CS_Contributor_License_Agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/0._CS_Contributor_License_Agreement.md -------------------------------------------------------------------------------- /1._Community_Specification_License-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/1._Community_Specification_License-v1.md -------------------------------------------------------------------------------- /2._Scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/2._Scope.md -------------------------------------------------------------------------------- /3._Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/3._Notices.md -------------------------------------------------------------------------------- /4._License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/4._License.md -------------------------------------------------------------------------------- /5._Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/5._Governance.md -------------------------------------------------------------------------------- /6._Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/6._Contributing.md -------------------------------------------------------------------------------- /7._CS_Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/7._CS_Template.md -------------------------------------------------------------------------------- /8._Code_of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/8._Code_of_Conduct.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slsa-framework/governance/HEAD/Readme.md --------------------------------------------------------------------------------