Skip to content

Commit 5152416

Browse files
committed
next check
1 parent 538798d commit 5152416

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/prepend-license.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,12 @@ jobs:
2727
run: |
2828
git pull origin ${{ github.event.pull_request.head.ref }}
2929
30-
if [ -z $(git status --porcelain) ];
31-
then
30+
echo "Checking GH_PR_TOKEN identity..."
31+
curl -H "Authorization: Bearer ${{ secrets.GH_PR_TOKEN }}" \
32+
-H "Accept: application/vnd.github+json" \
33+
https://api.github.com/user
34+
35+
if [ -z $(git status --porcelain) ]; then
3236
echo "No files to commit"
3337
else
3438
git commit -am "Add license header"

projects/storefrontlib/shared/components/media/media.component.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/*
2-
* SPDX-FileCopyrightText: 2025 SAP Spartacus team <[email protected]>
3-
*
4-
* SPDX-License-Identifier: Apache-2.0
5-
*/
6-
71
import {
82
ChangeDetectionStrategy,
93
Component,

0 commit comments

Comments
 (0)