Skip to content

Commit

Permalink
Merge branch 'eclipse-sw360:main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
GMishx authored Nov 27, 2024
2 parents 0c73096 + f41b892 commit 7d081f8
Show file tree
Hide file tree
Showing 1,401 changed files with 20,188 additions and 120,275 deletions.
7 changes: 7 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Global SW360 repo code owners ( owns all code )
* @heliocastro @gmishx @koukihama @arunazhakesan @ag4ums

# Docker specific
Dockerfile @heliocastro
docker-compose.yml @heliocastro

50 changes: 0 additions & 50 deletions .github/actions/clean_up_package_registry/action.yml

This file was deleted.

137 changes: 0 additions & 137 deletions .github/actions/clean_up_package_registry/clean_up_package_registry.py

This file was deleted.

9 changes: 0 additions & 9 deletions .github/actions/clean_up_package_registry/requirements.txt

This file was deleted.

16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily

- package-ecosystem: docker
directory: /
schedule:
interval: daily

- package-ecosystem: maven
directory: /
schedule:
interval: daily
31 changes: 31 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

---
name: Bug report
about: Create a report to help us improve
labels: bug
---

<!-- Before filling this issue, please read the wiki (https://eclipse.org/sw360)
and search if the bug do not already exists in the issues (https://github.com//eclipse-sw360/sw360/issues). -->

### Description

Please describe your issue in few words here.

#### How to reproduce

Describe the bug and list the steps you used when the issue occurred.

#### Screenshots ( if applicable )

Add screenshots to help explain your problem.

### Versions

* Docker version OR
* Last commit id on main

#### SW360 logs

* With docker through `docker logs sw360`
* From bare metal / vm install system under /var/log/sw360/sw360.log and /var/log/tomcat/error.log
42 changes: 16 additions & 26 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,21 @@
[//]: # (This program and the accompanying materials are made)
[//]: # (available under the terms of the Eclipse Public License 2.0)
[//]: # (which is available at https://www.eclipse.org/legal/epl-2.0/)
[//]: # (SPDX-License-Identifier: EPL-2.0)

---
name: Bug report
about: Create a report to help us improve
labels: bug
---
> Please provide a summary of your changes here.
> * Which issue is this pull request belonging to and how is it solving it? (*Refer to issue here*)
> * Did you add or update any new dependencies that are required for your change?
<!-- Before filling this issue, please read the wiki (https://eclipse.org/sw360)
and search if the bug do not already exists in the issues (https://github.com//eclipse-sw360/sw360/issues). -->
Issue:

### Description
### Suggest Reviewer
> You can suggest reviewers here with an @mention.
Please describe your issue in few words here.
### How To Test?
> How should these changes be tested by the reviewer?
> Have you implemented any additional tests?
#### How to reproduce

Describe the bug and list the steps you used when the issue occurred.

#### Screenshots ( if applicable )

Add screenshots to help explain your problem.

### Versions

* Docker version OR
* Last commit id on main

#### SW360 logs

* With docker through `docker logs sw360`
* From bare metal / vm install system under /var/log/sw360/sw360.log and /var/log/tomcat/error.log
### Checklist
Must:
- [ ] All related issues are referenced in commit messages and in PR
17 changes: 9 additions & 8 deletions .github/testForLicenseHeaders.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# -----------------------------------------------------------------------------
# Copyright Siemens AG, 2017.
# Copyright Bosch.IO 2020.
Expand All @@ -20,6 +20,7 @@ cd "$(dirname "$0")/.." || exit 1
failure=false

while read -r file ; do
# shellcheck disable=SC2086
if ! head -15 "$file" | grep -q 'SPDX-License-Identifier:' $file; then
echo "WARN: no 'SPDX-License-Identifier' in $file"
fi
Expand All @@ -34,19 +35,19 @@ while read -r file ; do
failure=true
done <<< "$(git ls-files \
| grep -Ev '\.(csv|rdf|ent|dtd|lar|png|gif|psd|ico|jpg|docx|gitignore|dockerignore|cert|jks|spdx|rdf|MockMaker|json)' \
| grep -Ev '(LICENSE|NOTICE|README|CHANGELOG|CODE_OF_CONDUCT|CONTRIBUTING|Language|Language_vi)' \
| grep -Ev '(LICENSE|NOTICE|README|SECURITY|CHANGELOG|CODE_OF_CONDUCT|CONTRIBUTING|Language|Language_vi)' \
| grep -v .pre-commit-config.yaml \
| grep -v 'id_rsa' \
| grep -v '.versions' \
| grep -v '.github/actions/docker_control/action.yml' \
| grep -v '.github/actions/docker_control/check_image.py' \
| grep -v '.github/ISSUE_TEMPLATE/*' \
| grep -v '.github/pull_request_template.md' \
| grep -v '.github/*' \
| grep -v 'scripts/lint/checkstyle.xml' \
| grep -v 'scripts/lint/google_checks.xml' \
| grep -v 'sw360.code-workspace' \
| grep -v 'default_secrets' \
| grep -v 'requirements.txt' \
| grep -Ev 'third-party/couchdb-lucene/*' \
| grep -Ev '*/asciidoc/*')"
| grep -Ev '.*/asciidoc/.*' \
| grep -Ev '.vscode/*' \
| grep -Ev 'config/*')"

if [ "$failure" = true ]; then
echo "test failed"
Expand Down
Loading

0 comments on commit 7d081f8

Please sign in to comment.