Skip to content

Commit c472725

Browse files
authored
Merge branch 'api-design-assistant' into main
2 parents 27391ff + 3c2c369 commit c472725

File tree

299 files changed

+31582
-3532
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

299 files changed

+31582
-3532
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Update to any of the packages Adding/Removing/Updating will require approval from one of the code owners
22
# This is done to make sure we don't accidentally add vulnerable, deprecated or libraries with invalid license support
33

4-
package-lock.json @tmkasun
5-
portals/publisher/package-lock.json @tmkasun
6-
portals/devportal/package-lock.json @tmkasun
7-
portals/admin/package-lock.json @tmkasun
4+
5+
# See: https://help.github.com/articles/about-codeowners/
6+
# These owners will be the default owners for everything in the repo.
7+
* @lasanthaS @Krishanx92 @tharikaGitHub @piyumaldk
8+

.github/workflows/main.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
name: API Manager Build with Test
1+
name: apim-apps build with tests
22

33
on:
4-
push:
5-
branches:
6-
- master
74
pull_request:
85
branches:
9-
- master
6+
- main
107
workflow_dispatch:
11-
8+
concurrency:
9+
group: ${{ github.event.number }}
1210
jobs:
1311
build-carbon:
1412
runs-on: ubuntu-latest
@@ -23,14 +21,14 @@ jobs:
2321
uses: actions/checkout@v2
2422
with:
2523
fetch-depth: '10'
26-
- name: Set up JDK 1.8
27-
uses: actions/setup-java@v2
24+
- name: Set up JDK
25+
uses: actions/setup-java@v4
2826
with:
29-
java-version: 8
30-
distribution: 'adopt'
31-
- uses: actions/setup-node@v1
27+
java-version: 11
28+
distribution: 'temurin'
29+
- uses: actions/setup-node@v4
3230
with:
33-
node-version: '14.x'
31+
node-version: '22'
3432
- name: Cache Maven packages
3533
uses: actions/cache@v2
3634
with:

.github/workflows/ui-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
branches:
99
- main
1010
workflow_dispatch:
11-
11+
concurrency:
12+
group: ${{ github.event.number }}
1213
jobs:
1314
build-product:
1415
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)