Skip to content

Commit ad284e9

Browse files
DeepDiver1975claudemmattel
authored
ci: add lint PR title workflow and dependabot github-actions (#238)
* ci: add lint PR title workflow and dependabot github-actions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * ci: add GitHub Actions CI workflow and remove drone Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Apply suggestion from @mmattel * Apply suggestion from @mmattel --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Martin <martin.mattel@diemattels.at>
1 parent 8cadd81 commit ad284e9

File tree

4 files changed

+52
-246
lines changed

4 files changed

+52
-246
lines changed

.drone.star

Lines changed: 0 additions & 246 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
38
- package-ecosystem: npm
49
directory: "/"
510
schedule:

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- '4.7'
8+
- '4.6'
9+
tags:
10+
- '**'
11+
pull_request:
12+
branches:
13+
- master
14+
15+
jobs:
16+
docs-build:
17+
name: Build documentation
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
21+
22+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
23+
with:
24+
node-version: '22'
25+
26+
- name: Install dependencies
27+
run: npm install
28+
29+
- name: Build documentation
30+
run: npm run antora
31+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Lint PR title
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)