resin-doodles 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/flowzone.yml +25 -0
- package/.versionbot/CHANGELOG.yml +52 -0
- package/CHANGELOG.md +6 -0
- package/package.json +5 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Flowzone
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [opened, synchronize, closed]
|
|
6
|
+
branches: [main, master]
|
|
7
|
+
# allow external contributions to use secrets within trusted code
|
|
8
|
+
pull_request_target:
|
|
9
|
+
types: [opened, synchronize, closed]
|
|
10
|
+
branches: [main, master]
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
flowzone:
|
|
14
|
+
name: Flowzone
|
|
15
|
+
uses: product-os/flowzone/.github/workflows/flowzone.yml@master
|
|
16
|
+
# prevent duplicate workflow executions for pull_request and pull_request_target
|
|
17
|
+
if: |
|
|
18
|
+
(
|
|
19
|
+
github.event.pull_request.head.repo.full_name == github.repository &&
|
|
20
|
+
github.event_name == 'pull_request'
|
|
21
|
+
) || (
|
|
22
|
+
github.event.pull_request.head.repo.full_name != github.repository &&
|
|
23
|
+
github.event_name == 'pull_request_target'
|
|
24
|
+
)
|
|
25
|
+
secrets: inherit
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Add dummy `test` script for flowzone
|
|
3
|
+
hash: df592981026aa3d8fc486ac7fbc3c9ec2bd6b038
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Matthew Yarmolinsky
|
|
9
|
+
- subject: Replace balenaCI with flowzone
|
|
10
|
+
hash: 0172f9d1ea11c82bdd400d674c6c737016f2488d
|
|
11
|
+
body: ""
|
|
12
|
+
footer:
|
|
13
|
+
Change-type: patch
|
|
14
|
+
change-type: patch
|
|
15
|
+
author: Matthew Yarmolinsky
|
|
16
|
+
version: 0.2.1
|
|
17
|
+
title: ""
|
|
18
|
+
date: 2025-09-16T17:02:15.861Z
|
|
19
|
+
- version: 0.2.0
|
|
20
|
+
date: 2022-01-12T12:40:53Z
|
|
21
|
+
commits:
|
|
22
|
+
- hash: fc2c6893acab914cae31258fa0abf40b3f2a7727
|
|
23
|
+
author: Scott Lowe
|
|
24
|
+
footers:
|
|
25
|
+
change-type: minor
|
|
26
|
+
signed-off-by: Scott Lowe <scott@balena.io>
|
|
27
|
+
subject: Force version-bot to bump version
|
|
28
|
+
body: ""
|
|
29
|
+
- hash: 1a9250a59d2b88dd3b10d83c661f1dedda46c464
|
|
30
|
+
author: Scott Lowe
|
|
31
|
+
footers:
|
|
32
|
+
change-type: minor
|
|
33
|
+
signed-off-by: Scott Lowe <scott@balena.io>
|
|
34
|
+
subject: Replace package `color` with `chalk`
|
|
35
|
+
body: |-
|
|
36
|
+
Update packages
|
|
37
|
+
Add README.md
|
|
38
|
+
Add .gitignore
|
|
39
|
+
- hash: a6f2e13c05eaf723169bd9d348b564da3039f0b9
|
|
40
|
+
author: Alexis Svinartchouk
|
|
41
|
+
subject: Fix doodle date logic and remove easter doodle
|
|
42
|
+
body: ""
|
|
43
|
+
- version: 0.1.0
|
|
44
|
+
date: 2017-11-06T14:35:00Z
|
|
45
|
+
commits:
|
|
46
|
+
- hash: 491b13c82890471416b3faa936a39b6653cb5b96
|
|
47
|
+
author: Cameron Diver
|
|
48
|
+
footers:
|
|
49
|
+
change-type: minor
|
|
50
|
+
signed-off-by: Cameron Diver <cameron@resin.io>
|
|
51
|
+
subject: Add typings
|
|
52
|
+
body: ""
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v0.2.1
|
|
8
|
+
## (2025-09-16)
|
|
9
|
+
|
|
10
|
+
* Add dummy `test` script for flowzone [Matthew Yarmolinsky]
|
|
11
|
+
* Replace balenaCI with flowzone [Matthew Yarmolinsky]
|
|
12
|
+
|
|
7
13
|
# v0.2.0
|
|
8
14
|
## (2022-01-12)
|
|
9
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resin-doodles",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Resin doodles for text based happiness, via unicorns!",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"chalk": "^4.1.2"
|
|
19
19
|
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"test": "printf There are no tests"
|
|
22
|
+
},
|
|
20
23
|
"devDependencies": {
|
|
21
24
|
"coffee": "^5.4.0",
|
|
22
25
|
"gulp": "^4.0.2",
|
|
@@ -24,6 +27,6 @@
|
|
|
24
27
|
"gulp-sourcemaps": "^3.0.0"
|
|
25
28
|
},
|
|
26
29
|
"versionist": {
|
|
27
|
-
"publishedAt": "
|
|
30
|
+
"publishedAt": "2025-09-16T17:02:15.899Z"
|
|
28
31
|
}
|
|
29
32
|
}
|