Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check_copyright_license_headers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
env:
GITHUB_BASE_REF: ${{github.base_ref}}
GITHUB_HEAD_REF: ${{github.head_ref}}
GITHUB_TREE_URL: ${{github.server_url}}/${{github.repository}}/tree/${{github.head_ref}}
GITHUB_HEAD_URL: ${{github.server_url}}/${{github.repository}}/tree/${{github.head_ref}}
4 changes: 2 additions & 2 deletions Base/Aliases.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Base.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#ifndef ATL_MODULE_BASE
#define ATL_MODULE_BASE
Expand Down
4 changes: 2 additions & 2 deletions Base/Bit.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Cast.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Context.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Limits.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Macros.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Types/base_sequence.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Types/base_view.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Types/sequence.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Types/view.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Base/Utilities.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2025 Atalante.
// Licensed under MIT.
// Copyright 2025 Atalante Studio.
// Distributed under the MIT License.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions scripts/check_copyright_license_headers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

HEADER=$'// Copyright 2025 Atalante.\n// Licensed under MIT.'
HEADER=$'// Copyright 2025 Atalante Studio.\n// Distributed under the MIT License.'

files=$(git diff --diff-filter=d --name-only origin/$GITHUB_BASE_REF origin/$GITHUB_HEAD_REF -- *.{cpp,hpp,ipp})
unlicensed_files=()
Expand All @@ -17,7 +17,7 @@ if [[ ${#unlicensed_files[@]} -gt 0 ]]; then
echo "The following file(s) don't have a valid copyright license header." >> $GITHUB_STEP_SUMMARY

for file in "${unlicensed_files[@]}"; do
echo "- [$file]($GITHUB_TREE_URL/$file)" >> $GITHUB_STEP_SUMMARY
echo "- [$file]($GITHUB_HEAD_URL/$file)" >> $GITHUB_STEP_SUMMARY
done

exit 1
Expand Down