Skip to content

Commit 0cee506

Browse files
committed
chore: First commit
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
0 parents  commit 0cee506

20 files changed

Lines changed: 1243 additions & 0 deletions

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-FileCopyrightText: 2026 LibreCode coop and contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
github: libresign

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
validate-and-build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
cache: npm
21+
22+
- name: Install dependencies
23+
run: npm install
24+
25+
- name: Validate plugin config
26+
run: npm run validate
27+
28+
- name: Build package
29+
run: npm run build
30+
31+
- name: Upload build artifact
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: libresign-eurooffice-plugin
35+
path: dist/libresign-eurooffice-plugin.tar.gz

.github/workflows/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Node
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: npm
23+
24+
- name: Install dependencies
25+
run: npm install
26+
27+
- name: Validate
28+
run: npm run validate
29+
30+
- name: Build archive
31+
run: npm run build
32+
33+
- name: Publish GitHub Release assets
34+
uses: softprops/action-gh-release@v2
35+
with:
36+
files: dist/libresign-eurooffice-plugin.tar.gz
37+
generate_release_notes: true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
*.tar.gz

CONTRIBUTING.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Contributing
2+
3+
Thanks for helping improve the LibreSign EuroOffice Plugin.
4+
5+
## Development flow
6+
7+
- Fork the repository.
8+
- Create a branch from main.
9+
- Make focused changes.
10+
- Run validation locally.
11+
- Open a pull request with clear context.
12+
13+
## Local checks
14+
15+
```bash
16+
npm install
17+
npm run validate
18+
npm run build
19+
```
20+
21+
For detailed maintainer workflows (release, packaging, SDK artifact policy), see docs/MAINTAINERS.md.
22+
23+
## Pull request checklist
24+
25+
- Keep changes scoped and documented.
26+
- Update README when behavior changes.
27+
- Ensure config.json remains valid.
28+
- Include screenshots when UI behavior is changed.
29+
30+
## Reporting issues
31+
32+
Please include:
33+
34+
- Editor type (word/pdf).
35+
- ONLYOFFICE or EuroOffice version.
36+
- Browser and OS.
37+
- Steps to reproduce.
38+
- Expected and actual behavior.
39+
40+
## Code of conduct
41+
42+
Be respectful, collaborative, and constructive in all interactions.

0 commit comments

Comments
 (0)