Skip to content

Commit

Permalink
Merge branch 'main' into datetimepicker-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
franzheidl committed Sep 19, 2024
2 parents bd1e28e + 4372cec commit e1593b9
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 31 deletions.
5 changes: 0 additions & 5 deletions .changeset/cyan-weeks-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-years-fail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-papayas-hide.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ on:
- opened
- synchronize
- reopened
# Trigger after the 'Release' workflow completes
workflow_run:
workflows: ["Release"]
types:
- completed

permissions:
contents: write
Expand All @@ -24,7 +19,6 @@ env:

jobs:
install-dependencies:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
runs-on: [default]
steps:
- uses: actions/checkout@v4
Expand All @@ -45,19 +39,16 @@ jobs:
run: npm ci

reuse-compliance:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
uses: cloudoperators/common/.github/workflows/shared-reuse.yaml@main

license-headers:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
permissions:
contents: write # Only used when `apply_header: true` else the permission is `read` see: https://github.com/cloudoperators/common/blob/8f15c13b6f4c1631c7e6f6dff5c3300452e9b5b6/.github/workflows/shared-license.yaml#L21-L22
uses: cloudoperators/common/.github/workflows/shared-license.yaml@main
with:
apply_header: false

allowed-licenses:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
needs: install-dependencies
runs-on: [default]
steps:
Expand All @@ -82,7 +73,6 @@ jobs:
run: npm run check-licenses

lint:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
needs: install-dependencies
runs-on: [default]
steps:
Expand All @@ -106,7 +96,6 @@ jobs:
run: npm run lint

type-check:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
needs: install-dependencies
runs-on: [default]
steps:
Expand All @@ -130,7 +119,6 @@ jobs:
run: npm run typecheck

format:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
needs: install-dependencies
runs-on: [default]
steps:
Expand All @@ -154,7 +142,6 @@ jobs:
run: npm run check-format

test:
if: ${{ !startsWith(github.head_ref, 'changeset-release/main') }}
needs: install-dependencies
runs-on: [default]
steps:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,17 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
lint:
needs: install-dependencies
runs-on: [default]
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20" # Specify the node version you need

- name: Install Dependencies
run: npm ci
- name: Run Linter
run: npm run lint
8 changes: 8 additions & 0 deletions apps/greenhouse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @cloudoperators/juno-app-greenhouse

## 0.2.1

### Patch Changes

- 9812092: Use the latests version of supernova
- Updated dependencies [4ad82f4]
- @cloudoperators/juno-ui-components@2.20.0

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/greenhouse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudoperators/juno-app-greenhouse",
"version": "0.2.0",
"version": "0.2.1",
"orgAdminVersion": "latest",
"author": "UI-Team",
"contributors": [
Expand Down
11 changes: 11 additions & 0 deletions apps/supernova/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @cloudoperators/juno-app-supernova

## 0.12.0

### Minor Changes

- 1f02087: feat(supernova): enable editing name, if user is anonymous

### Patch Changes

- Updated dependencies [4ad82f4]
- @cloudoperators/juno-ui-components@2.20.0

## 0.11.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/supernova/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudoperators/juno-app-supernova",
"version": "0.11.3",
"version": "0.12.0",
"author": "UI-Team",
"contributors": [
"Esther Schmitz",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @cloudoperators/juno-ui-components

## 2.20.0

### Minor Changes

- 4ad82f4: Migrate AppShell and navigation components to TypeScript

## 2.19.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "build/index.js",
"source": "src/index.js",
"style": "build/lib/variables.css",
"version": "2.19.0",
"version": "2.20.0",
"files": [
"build/*",
"src/colors.css",
Expand Down

0 comments on commit e1593b9

Please sign in to comment.