Compare commits

..

5 Commits

Author SHA1 Message Date
papacarlo a62d56b575 Update submodules 2022-02-22 08:51:26 +00:00
Semyon Bezrukov 5e546060d5 Add append changelog github action (#854) 2022-02-22 11:33:56 +03:00
Semyon Bezrukov 3da7620477 Add update submodules github action (#853)
* Add update submodules github action

* Small fix
2022-02-22 11:31:38 +03:00
Alexander Trofimov 6821e6a602 Update version (#813) 2022-01-18 14:57:01 +03:00
papacarlo 653fde717a Update submodules 2022-01-18 07:40:00 +00:00
9 changed files with 90 additions and 7 deletions
+58
View File
@@ -0,0 +1,58 @@
name: Append changelog for new release
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
jobs:
append-changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Write changelog
run: |
cp -fv CHANGELOG.md CHANGELOG.md.bak
head -n2 CHANGELOG.md.bak > CHANGELOG.md
cat >> CHANGELOG.md << EOF
## ${{ github.event.inputs.version }}
### New Features
* TODO
#### Document Editors
* TODO
#### Spreadsheet Editor
* TODO
#### Presentation Editors
* TODO
### Fixes
* TODO
EOF
tail -n +3 CHANGELOG.md.bak >> CHANGELOG.md
rm -fv CHANGELOG.md.bak
- name: Commit & push changes
uses: EndBug/add-and-commit@v8
with:
author_name: github-actions[bot]
author_email: github-actions[bot]@users.noreply.github.com
message: Add template changelog for v${{ github.event.inputs.version }}
add: CHANGELOG.md
new_branch: feature/changelog-v${{ github.event.inputs.version }}
+25
View File
@@ -0,0 +1,25 @@
name: Update submodules
on:
workflow_dispatch:
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Update submodules recursively
run: git submodule update --recursive --remote
- name: Commit & push changes
uses: EndBug/add-and-commit@v8
with:
author_name: github-actions[bot]
author_email: github-actions[bot]@users.noreply.github.com
message: Update submodules
+1 -1
View File
@@ -1,5 +1,5 @@
[![License](https://img.shields.io/badge/License-GNU%20AGPL%20V3-green.svg?style=flat)](https://www.gnu.org/licenses/agpl-3.0.en.html)
![Platforms Windows | macOS | Linux](https://img.shields.io/badge/Platforms-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg?style=flat) ![Release](https://img.shields.io/badge/Release-v6.4.2-blue.svg?style=flat)
![Platforms Windows | macOS | Linux](https://img.shields.io/badge/Platforms-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg?style=flat) ![Release](https://img.shields.io/badge/Release-v7.0.0-blue.svg?style=flat)
## Overview
+1 -1
Submodule core updated: 0c29e4d08e...7c83535528
+1 -1
Submodule sdkjs updated: 9af7d085bf...1c42fc588e