From 7fe143b53a371a10070eb8e3266a04c52dd7705e Mon Sep 17 00:00:00 2001 From: Jonas Roussel Date: Sat, 30 Sep 2023 20:05:42 +0200 Subject: [PATCH] fix gitub workflows dir name & add some useful files for github --- .github/CODEOWNERS | 3 +++ .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ .github/{workspaces => workflows}/publish-ci.yml | 0 .github/{workspaces => workflows}/tests-ci.yml | 0 4 files changed, 11 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/PULL_REQUEST_TEMPLATE.md rename .github/{workspaces => workflows}/publish-ci.yml (100%) rename .github/{workspaces => workflows}/tests-ci.yml (100%) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..e140752 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# Every request must be reviewed and accepted by: + +* @jonasroussel diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..dfba829 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ + + +## Description + + diff --git a/.github/workspaces/publish-ci.yml b/.github/workflows/publish-ci.yml similarity index 100% rename from .github/workspaces/publish-ci.yml rename to .github/workflows/publish-ci.yml diff --git a/.github/workspaces/tests-ci.yml b/.github/workflows/tests-ci.yml similarity index 100% rename from .github/workspaces/tests-ci.yml rename to .github/workflows/tests-ci.yml