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
6 changes: 5 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ updates:
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 2
commit-message:
prefix: "ci(github-actions)"
- package-ecosystem: npm
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
versioning-strategy: increase
cooldown:
default-days: 2
commit-message:
prefix: "deps"
prefix-development: "build(deps-dev)"
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ on:
branches:
- main

permissions:
contents: read
# No permissions are required for this workflow
permissions: {}

jobs:
test:
name: General checks
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
Expand All @@ -27,6 +29,14 @@ jobs:
- name: Perform Prettier check
run: npm run prettier:check

- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npm run lint:commit -- --last --verbose

- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npm run lint:commit -- --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose

- name: Perform Licenses check
run: npm run check-licenses

Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/commitlint.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ permissions:
jobs:
pull-request:
runs-on: ubuntu-24.04
environment: release
steps:
- uses: googleapis/release-please-action@v5
- uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0
id: release
with:
token: ${{secrets.GH_OPENUI5BOT}}
6 changes: 3 additions & 3 deletions .github/workflows/reuse-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
branches:
- main

permissions:
contents: read
# No permissions are required for this workflow
permissions: {}

jobs:
compliance-check:
Expand All @@ -18,4 +18,4 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Execute REUSE Compliance Check
uses: fsfe/reuse-action@v6
uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6.0.0
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run lint:commit -- --edit "$1" # Lint currently edited commit message
1 change: 0 additions & 1 deletion .husky/pre-push

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
registry=https://registry.npmjs.org/
lockfile-version=3
ignore-scripts=true
allow-git=none
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
"scripts": {
"check-licenses": "licensee --errors-only",
"knip": "knip",
"hooks:pre-push": "npm run lint:commit",
"lint:commit": "commitlint -e",
"lint:commit": "commitlint",
"prepare": "node ./.husky/skip.js || husky",
"prettier": "prettier **/.mcp.json **/plugin.json",
"prettier:write": "npm run prettier -- --write",
Expand Down