From 979587154190dad9560349cc36c89a67df659e53 Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Mon, 1 Sep 2025 10:02:25 +0200 Subject: [PATCH 1/3] Add CONTRIBUTING.md --- .github/CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..da73b12a --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,4 @@ +# Contributing + +Please take some time to get familiar with the [contributing guidelines](https://docs.cscs.ch/contributing/) before making your first contribution. +Following the guidelines helps us keep the documentation consistent and as useful as possible for users. From 5af1681e9f0d74e78477f1417239ab1ad61895d5 Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Mon, 1 Sep 2025 10:02:32 +0200 Subject: [PATCH 2/3] Add first interaction workflow to direct contributors to contributing guidelines --- .github/workflows/welcome.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/welcome.yaml diff --git a/.github/workflows/welcome.yaml b/.github/workflows/welcome.yaml new file mode 100644 index 00000000..4b647303 --- /dev/null +++ b/.github/workflows/welcome.yaml @@ -0,0 +1,21 @@ +name: First interaction message + +on: + pull_request_target: + types: [opened] + branches: + - main + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/first-interaction@v3 + with: + pr-message: | + Thank you for your contribution to eth-cscs/cscs-docs. + + If you have not done so already, please take some time to get familiar with the [contributing guidelines](https://docs.cscs.ch/contributing/). + Following the guidelines helps us keep the documentation consistent and as useful as possible for users. From 400ea15074a837dcb028a3f421004a4be30748b7 Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Mon, 1 Sep 2025 12:21:54 +0200 Subject: [PATCH 3/3] Remove redundant sentence from CONTRIBUTING.md --- .github/CONTRIBUTING.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index da73b12a..dc1d6b2b 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,4 +1,3 @@ # Contributing Please take some time to get familiar with the [contributing guidelines](https://docs.cscs.ch/contributing/) before making your first contribution. -Following the guidelines helps us keep the documentation consistent and as useful as possible for users.