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
8 changes: 8 additions & 0 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright (c) 2025 Eclipse Foundation.
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT

name: Release on Tag Push

on:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/retag-release-as-latest.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright (c) 2025 Eclipse Foundation.
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT

name: Retag Release Image as Latest

on:
Expand Down
56 changes: 56 additions & 0 deletions .licenseignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Dependencies and package managers
node_modules/
vendor/
venv/
.env/
data/python-packages/
service/src/app/

# Build outputs
dist/
build/
out/
target/
*.min.js
*.min.css

# Third party code
third_party/
external/
libs/

# Generated files
*_generated.*
*.gen.*
*_pb2.py
*.pb.go

# Documentation
*.md
LICENSE
NOTICE

# Config files
.gitignore
.licenseignore
package-lock.json
yarn.lock
go.sum

# Binary and media files
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.ico
*.pdf
*.zip
*.tar.gz

# Service-specific exclusions (for epam-service-connector)
service/LICENSE
service/service.tar.gz

# Third party JavaScript libraries
public/js/highlight.pack.js
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright (c) 2025 Eclipse Foundation.
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT

language: node_js
node_js:
- '12'
Expand Down
Loading