Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit a8a7db0

Browse files
author
Lisi Linhart
authored
Merge pull request #22 from storyblok/develop
chore: add automations & update templates
2 parents 8019b46 + d1c89dd commit a8a7db0

8 files changed

Lines changed: 34 additions & 100 deletions

File tree

.github/ISSUE_TEMPLATE.md

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

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
name: Bug report
3-
about: Create a report to help us improve Storyblok
3+
about: Create a report to help us improve the CLI
44
title: ''
55
labels: bug
66
assignees: ''
77

88
---
99

10-
**The issue occurs while working with:** (check one with "x")
11-
- [ ] *app.storyblok.com (CMS - Interface)*
12-
- [ ] *api.storyblok.com (CMS - Content Delivery API)*
13-
- [ ] *mapi.storyblok.com (CMS - Management API)*
14-
- [ ] *a.storyblok.com (CMS - Image Service)*
15-
- [ ] *storyblok.com (Website)*
16-
- [ ] *Other:* <!-- => If you've got an issue with on of our boilerplates or themes - please create an issue in the specific repo -->
1710

1811
**Current behavior:**
1912
<!-- Describe how the bug manifests. -->

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/ISSUE_TEMPLATE/question.md

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

.github/labeler.yml

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

.github/workflows/issue-label.yml

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

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-node@v3
14+
with:
15+
node-version: 16
16+
cache: 'yarn'
17+
- name: Install dependencies
18+
run: yarn
19+
- name: Release
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
NPM_TOKEN: ${{ secrets.NPM_PUBLISH }}
23+
run: npx semantic-release

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"name": "storyblok",
3-
"version": "2.0.0",
3+
"version": "3.15.0",
44
"description": "A simple CLI to start Storyblok from your command line.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/storyblok/storyblok-cli.git"
8+
},
59
"keywords": [
610
"storyblok",
711
"cli",
@@ -55,5 +59,10 @@
5559
"eslint-plugin-promise": "^4.2.1",
5660
"eslint-plugin-standard": "^4.0.1",
5761
"jest": "^26.1.0"
62+
},
63+
"release": {
64+
"branches": [
65+
"master"
66+
]
5867
}
5968
}

0 commit comments

Comments
 (0)