Skip to content

Commit decf42d

Browse files
docs(reuse): Add SPDX header
Signed-off-by: Andy Scherzinger <[email protected]>
1 parent c3e9598 commit decf42d

File tree

97 files changed

+800
-458
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+800
-458
lines changed

.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
module.exports = {
27
globals: {
38
appVersion: true

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# App maintainers
14
/appinfo/info.xml @julien-nc @marcelklehr

.github/ISSUE_TEMPLATE/bug_report.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: Bug Report
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
name: 🐞 Bug Report
24
description: Create a bug report for context_chat
35
labels: ['bug']
46
body:

.github/ISSUE_TEMPLATE/config.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
blank_issues_enabled: false
1+
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
contact_links:
4+
- name: 🚨 Report a security or privacy issue
5+
url: https://hackerone.com/nextcloud
6+
about: Report security and privacy related issues privately to the Nextcloud team, so we can coordinate the fix and release without potentially exposing all Nextcloud servers and users in the meantime.
7+
- name: ❓ Community Support and Help
8+
url: https://help.nextcloud.com/
9+
about: Configuration, webserver/proxy or performance issues and other questions
10+
- name: 💼 Nextcloud Enterprise
11+
url: https://portal.nextcloud.com/
12+
about: If you are a Nextcloud Enterprise customer, or need Professional support, so it can be resolved directly by our dedicated engineers more quickly

.github/ISSUE_TEMPLATE/feature_request.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: Feature Request
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
name: 🚀 Feature Request
24
description: Create a feature request for context_chat
35
labels: ['enhancement']
46
body:

.github/workflows/lint-php-cs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
#
33
# https://github.com/nextcloud/.github
44
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
5+
#
6+
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
7+
# SPDX-License-Identifier: MIT
58

69
name: Lint php-cs
710

.github/workflows/lint-php.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
#
33
# https://github.com/nextcloud/.github
44
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
5+
#
6+
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
7+
# SPDX-License-Identifier: MIT
58

69
name: Lint php
710

.github/workflows/node.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
#
33
# https://github.com/nextcloud/.github
44
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
5+
#
6+
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
7+
# SPDX-License-Identifier: MIT
58

69
name: Node
710

.github/workflows/phpunit.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: MIT
13
name: PHPUnit
24

35
on:

.github/workflows/pr-feedback.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717

1818
jobs:
1919
pr-feedback:
20+
if: ${{ github.repository_owner == 'nextcloud' }}
2021
runs-on: ubuntu-latest
2122
steps:
2223
- name: The get-github-handles-from-website action
@@ -35,7 +36,7 @@ jobs:
3536
with:
3637
feedback-message: |
3738
Hello there,
38-
Thank you so much for taking the time and effort to create a pull request to our Nextcloud project.
39+
Thank you so much for taking the time and effort to create a pull request to our Nextcloud project.
3940
4041
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.
4142
@@ -45,6 +46,6 @@ jobs:
4546
4647
(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).)
4748
days-before-feedback: 14
48-
start-date: "2024-04-30"
49-
exempt-authors: "${{ steps.blocklist.outputs.blocklist }},${{ steps.scrape.outputs.users }},nextcloud-command,nextcloud-android-bot"
49+
start-date: '2024-04-30'
50+
exempt-authors: '${{ steps.blocklist.outputs.blocklist }},${{ steps.scrape.outputs.users }}'
5051
exempt-bots: true

.github/workflows/psalm.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
#
33
# https://github.com/nextcloud/.github
44
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
5+
#
6+
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
7+
# SPDX-License-Identifier: MIT
58

69
name: Static analysis
710

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
js/
24
.code-workspace
35
.DS_Store

.l10nignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
# compiled vue templates
24
js/
35
vendor/

.nextcloudignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
.git
24
.github
35
.gitignore

.php-cs-fixer.dist.php

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
7+
* SPDX-License-Identifier: AGPL-3.0-or-later
8+
*/
9+
510
require_once './vendor/autoload.php';
611

712
use Nextcloud\CodingStandard\Config;

AUTHORS.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
15
# Authors
26

3-
* Julien Veyssier <[email protected]> (Developper)
4-
7+
- Andy Scherzinger <[email protected]>
8+
- Anupam Kumar <[email protected]>
9+
- Daphne Muller <[email protected]>
10+
- Julien Veyssier <[email protected]>
11+
- Marcel Klehr <[email protected]>
12+

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
15
# Change Log
26
All notable changes to this project will be documented in this file.
37

0 commit comments

Comments
 (0)