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/actions/check-and-comment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
steps:
- name: Check SPDX headers
id: check-spdx-headers
uses: Telefonica/check-spdx-headers@v1.0.4
uses: Telefonica/check-spdx-headers@v1.0.5
with:
rules: ${{ inputs.rules }}
ignore: ${{ inputs.ignore }}
Expand Down
6 changes: 0 additions & 6 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ runs:
with:
node-version-file: .node-version
cache: npm
- uses: DamianReeves/write-file-action@v1.3
with:
path: .npmrc
contents: |
@tid-xcut:registry=https://nexus.tid.es/repository/npm-xcut-components/
//nexus.tid.es/repository/npm-xcut-components/:_auth=${{ inputs.npm-token }}
write-mode: append
- name: Install Dependencies
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sync-docs-to-confluence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
[
{
"path": "README.md",
"id": "${{ vars.CONFLUENCE_README_PAGE_ID }}",
"id": "${{ secrets.CONFLUENCE_README_PAGE_ID }}",
"title": "[Cross] Check SPDX Headers"
},
{
"path": "CHANGELOG.md",
"id": "${{ vars.CONFLUENCE_CHANGELOG_PAGE_ID }}",
"id": "${{ secrets.CONFLUENCE_CHANGELOG_PAGE_ID }}",
"title": "[Cross] [Check SPDX Headers] Releases"
}
]
confluence-url: ${{ vars.CONFLUENCE_URL }}
confluence-space-key: ${{ vars.CONFLUENCE_SPACE_KEY }}
confluence-url: ${{ secrets.CONFLUENCE_URL }}
confluence-space-key: ${{ secrets.CONFLUENCE_SPACE_KEY }}
confluence-personal-access-token: ${{ secrets.CONFLUENCE_PAT }}
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
#### Deprecated
#### Removed

## [1.0.5] - 2025-04-09

### Changed

* docs: Add badges to README
* chore: Make some adjustments for a public repository

## [1.0.4] - 2025-03-28

### Changed
Expand All @@ -19,7 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* chore: Bump `markdown-confluence-sync-action` action to v2
* docs: Improve release process documentation


## [1.0.3] - 2025-02-13

### Changed
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build status](https://github.com/Telefonica/check-license-compliance/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/Telefonica/check-license-compliance/actions?query=workflow%3Abuild+branch%3Amain) [![Last commit](https://img.shields.io/github/last-commit/Telefonica/check-license-compliance.svg)](https://github.com/Telefonica/check-license-compliance/commits) [![Last release](https://img.shields.io/github/release-date/Telefonica/check-license-compliance.svg)](https://github.com/Telefonica/check-license-compliance/releases)

# Check SPDX headers

Checks that files have the correct SPDX headers according to a given configuration.
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tid-xcut/check-spdx-headers",
"name": "@telefonica/check-spdx-headers",
"description": "Checks that files have the correct SPDX headers",
"version": "1.0.4",
"version": "1.0.5",
"author": "Telefónica Innovación Digital",
"homepage": "https://github.com/Telefonica/check-spdx-headers",
"repository": {
Expand Down
Loading