diff --git a/.pullapprove.yml b/.pullapprove.yml new file mode 100644 index 00000000..c0cfa18d --- /dev/null +++ b/.pullapprove.yml @@ -0,0 +1,43 @@ +version: 2 + +requirements: + signed_off_by: + required: true + +# Disallow approval of PRs still under development +always_pending: + title_regex: '(WIP|RFC)' + labels: + - do-not-merge + - wip + - rfc + explanation: 'Work in progress - do not merge' + +group_defaults: + approve_by_comment: + enabled: true + approve_regex: '^(LGTM|lgtm|Approved|\+1|:\+1:)' + reject_regex: '^(Rejected|-1|:-1:)' + reset_on_push: + enabled: false + reset_on_reopened: + enabled: false + author_approval: + ignored: true + +groups: + approvers: + required: 2 + teams: + - packaging + + documentation: + required: 1 + teams: + - documentation + conditions: + files: + include: + - "*.md" + exclude: + - "vendor/*" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..1d9d931a --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,3 @@ +## Kata Containers CI Code of Conduct + +Kata Containers follows the [OpenStack Foundation Code of Conduct](https://www.openstack.org/legal/community-code-of-conduct/). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..bdeeb024 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1 @@ +For details on how to contribute to the Kata Containers project, please see the main [contributing document](https://github.com/kata-containers/community/blob/master/CONTRIBUTING.md).