Skip to content

Commit acc5a70

Browse files
authored
ci: update to gh actions and sync with master (#242)
* ci: update to gh actions and sync with master * remove .drone.star * fix: update pr branch
1 parent 67c64f2 commit acc5a70

File tree

8 files changed

+94
-276
lines changed

8 files changed

+94
-276
lines changed

.drone.star

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

.github/dependabot.yml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
time: "22:00"
8-
open-pull-requests-limit: 10
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "22:00"
8+
open-pull-requests-limit: 10
9+
commit-message:
10+
prefix: "chore"
11+
include: "scope"
12+
13+
- package-ecosystem: github-actions
14+
directory: "/"
15+
schedule:
16+
interval: weekly
17+
time: "22:00"
18+
open-pull-requests-limit: 10
19+
commit-message:
20+
prefix: "chore"
21+
include: "scope"

.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+
- 4.7
14+
15+
jobs:
16+
docs-build:
17+
name: Build documentation
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
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 }}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Android App Documentation
22

3+
**IMPORTANT**
4+
5+
Since April 2026, this repository requires [Commit Signing](https://docs.github.com/articles/about-gpg) and uses [Conventional Commits](https://www.conventionalcommits.org) for commits and the Pull Request title.
6+
37
**Table of Contents**
48

59
* [Building the Andriod Docs](#building-the-android-docs)

0 commit comments

Comments
 (0)