forked from nextcloud/user_oidc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nextcloud#975 from nextcloud/docs/noid/reuse-compl…
…iance Add reuse compliance
- Loading branch information
Showing
110 changed files
with
1,049 additions
and
961 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/appinfo/info.xml @julien-nc @juliushaertl | ||
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
# App maintainer | ||
/appinfo/info.xml @julien-nc @juliusknorr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,32 +3,49 @@ | |
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-FileCopyrightText: 2023 Marcel Klehr <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Joas Schilling <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Daniel Kesselberg <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Florian Steffens <[email protected]> | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: 'Ask for feedback on PRs' | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
pr-feedback: | ||
if: ${{ github.repository_owner == 'nextcloud' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: The get-github-handles-from-website action | ||
uses: marcelklehr/get-github-handles-from-website-action@a739600f6b91da4957f51db0792697afbb2f143c # v1.0.0 | ||
id: scrape | ||
with: | ||
website: 'https://nextcloud.com/team/' | ||
- uses: marcelklehr/pr-feedback-action@601109aa729eb4c8d6d0ece7567b9d4901db4aef | ||
|
||
- name: Get blocklist | ||
id: blocklist | ||
run: | | ||
blocklist=$(curl https://raw.githubusercontent.com/nextcloud/.github/master/non-community-usernames.txt | paste -s -d, -) | ||
echo "blocklist=$blocklist" >> "$GITHUB_OUTPUT" | ||
- uses: marcelklehr/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4 | ||
with: | ||
feedback-message: | | ||
Hello there, | ||
Thank you so much for taking the time and effort to create a pull request to our Nextcloud project. | ||
Thank you so much for taking the time and effort to create a pull request to our Nextcloud project. | ||
We hope that the review process is going smooth and is helpful for you. We want to ensure your pull request is reviewed to your satisfaction. If you have a moment, our community management team would very much appreciate your feedback on your experience with this PR review process. | ||
Your feedback is valuable to us as we continuously strive to improve our community developer experience. Please take a moment to complete our short survey by clicking on the following link: https://cloud.nextcloud.com/apps/forms/s/i9Ago4EQRZ7TWxjfmeEpPkf6 | ||
Thank you for contributing to Nextcloud and we hope to hear from you soon! | ||
(If you believe you should not receive this message, you can add yourself to the [blocklist](https://github.com/nextcloud/.github/blob/master/non-community-usernames.txt).) | ||
days-before-feedback: 14 | ||
start-date: "2023-07-10" | ||
exempt-authors: "${{ steps.scrape.outputs.users }},nextcloud-command,nextcloud-android-bot,skjnldsv,datenangebot" | ||
start-date: '2024-04-30' | ||
exempt-authors: '${{ steps.blocklist.outputs.blocklist }},${{ steps.scrape.outputs.users }}' | ||
exempt-bots: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org> | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
name: REUSE Compliance Check | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
reuse-compliance-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
||
- name: REUSE Compliance Check | ||
uses: fsfe/reuse-action@3ae3c6bdf1257ab19397fab11fd3312144692083 # v4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!-- | ||
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
# Authors | ||
|
||
- Aaron Lewandowski <[email protected]> | ||
- Ada <[email protected]> | ||
- Andy Scherzinger <[email protected]> | ||
- aro-lew <[email protected]> | ||
- Ben Kristinsson <[email protected]> | ||
- [email protected] <[email protected]> | ||
- Caleb Maclennan <[email protected]> | ||
- Carl Schwan <[email protected]> | ||
- Christoph Wurst <[email protected]> | ||
- Christoph Wurst <[email protected]> | ||
- Clément OUDOT <[email protected]> | ||
- Côme Chilliet <[email protected]> | ||
- Edward Ly <[email protected]> | ||
- Florian Klinger <[email protected]> | ||
- Joas Schilling <[email protected]> | ||
- John Molakvoæ <[email protected]> | ||
- joselameira <[email protected]> | ||
- Julien Veyssier <[email protected]> | ||
- Julius Knorr <[email protected]> | ||
- Louis Chemineau <[email protected]> | ||
- Lukas Reschke <[email protected]> | ||
- Marcel Klehr <[email protected]> | ||
- Marvin Öhlerking <[email protected]> | ||
- msk010 <[email protected]> | ||
- nc-fkl <[email protected]> | ||
- Nextcloud bot <[email protected]> | ||
- Pieter Fiers <[email protected]> | ||
- Quentin de Longraye <[email protected]> | ||
- Reigo Reinmets <[email protected]> | ||
- Rello <[email protected]> | ||
- rgfernandes <[email protected]> | ||
- Robin Appelman <[email protected]> | ||
- Roeland Jago Douma <[email protected]> | ||
- Thibault Coupin <[email protected]> | ||
- Tobias Wolter <[email protected]> | ||
- Vincent Petry <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.