Skip to content

Commit dc47656

Browse files
authored
Merge branch 'main' into cou-static-column-widths
2 parents 0a90ec7 + f1a16fa commit dc47656

39 files changed

+1665
-5350
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2023 Elyra Authors
2+
* Copyright 2017-2025 Elyra Authors
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

.github/workflows/build.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#
2+
# Copyright 2025 Elyra Authors
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
name: Elyra pipeline-schemas build
17+
18+
on:
19+
push:
20+
branches: '*'
21+
pull_request:
22+
branches: '*'
23+
24+
# Ensure build jobs for a PR are cancelled when a new commit is pushed to the PR
25+
concurrency:
26+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
27+
cancel-in-progress: true
28+
29+
jobs:
30+
build:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Use Node.js
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: 20.x
38+
- run: ./scripts/generateTS.sh

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2017-2023 Elyra Authors
2+
# Copyright 2017-2025 Elyra Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -27,9 +27,10 @@ jobs:
2727
with:
2828
token: ${{ secrets.GIT_TOKEN }}
2929
- name: Use Node.js
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v4
3131
with:
32-
node-version: 12.x
32+
node-version: 20.x
33+
- run: ./scripts/generateTS.sh
3334
- run: ./scripts/publish_modules.sh
3435
env:
3536
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2017-2023 Elyra Authors
2+
# Copyright 2017-2025 Elyra Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2017-2023 Elyra Authors
2+
# Copyright 2017-2025 Elyra Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2017-2023 Elyra Authors
2+
# Copyright 2017-2025 Elyra Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
{% comment %}
3-
Copyright 2017-2023 Elyra Authors
3+
Copyright 2017-2025 Elyra Authors
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
{% comment %}
3-
Copyright 2017-2023 Elyra Authors
3+
Copyright 2017-2025 Elyra Authors
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
{% comment %}
3-
Copyright 2017-2023 Elyra Authors
3+
Copyright 2017-2025 Elyra Authors
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

common-canvas/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
{% comment %}
3-
Copyright 2017-2023 Elyra Authors
3+
Copyright 2017-2025 Elyra Authors
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)