@spaced-out/ui-design-system 0.0.18-beta.1 → 0.0.18-beta.2

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.
@@ -1,5 +1,7 @@
1
+ Anant
1
2
  atleast
2
3
  circlehollow
4
+ CODEOWNERS
3
5
  commitlint
4
6
  contributorsrc
5
7
  Crespo
@@ -0,0 +1,37 @@
1
+ # Github Workflows
2
+
3
+ /.github @superrover
4
+
5
+ # Storybook Global Settings
6
+
7
+ /.storybook @superrover
8
+
9
+ # IDE Global Settings
10
+
11
+ /.vscode @superrover @Anant-Raj
12
+
13
+ # People who want to watch all code changes
14
+
15
+ - @superrover
16
+
17
+ # Design Tokens
18
+
19
+ /design-tokens @superrover @Anant-Raj
20
+
21
+ # Flow
22
+
23
+ /flow @superrover @Anant-Raj
24
+ /flow-typed @superrover @Anant-Raj
25
+
26
+ # Global Util scripts
27
+
28
+ /scripts @superrover
29
+
30
+ # Genesis Team
31
+
32
+ /src @superrover @Anant-Raj
33
+
34
+ # however, these specific sensitive parts of the app do require signoff from any ui engineer
35
+
36
+ /package.json @superrover @Anant-Raj
37
+ /yarn.lock @superrover @Anant-Raj
@@ -21,6 +21,15 @@ jobs:
21
21
  release:
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
+ - name: Check Permissions
25
+ id: check-permissions
26
+ env:
27
+ ALLOWED_USERS: superrover
28
+ if: ${{ !contains(env.ALLOWED_USERS, github.actor) }}
29
+ run: |
30
+ echo "You don't have correct permissions to do this release"
31
+ exit 1
32
+
24
33
  # Checkout project repository
25
34
  # Added fetch-depth to fetch complete history of repo. TODO(Nishant): Customize?
26
35
  # TODO(Nishant): update with a org bot token instead of personal token
@@ -0,0 +1,19 @@
1
+ # Author: Nishant Gaurav
2
+ # workflow to check for PR names wrt conventional commits, uses a third party action
3
+ name: 'Lint PR'
4
+
5
+ on:
6
+ pull_request_target:
7
+ types:
8
+ - opened
9
+ - edited
10
+ - synchronize
11
+
12
+ jobs:
13
+ main:
14
+ name: Validate PR title
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: amannn/action-semantic-pull-request@v5
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.18-beta.2](https://github.com/spaced-out/ui-design-system/compare/v0.0.18-beta.1...v0.0.18-beta.2) (2023-02-06)
6
+
7
+
8
+ ### Features
9
+
10
+ * added code owners ([d343555](https://github.com/spaced-out/ui-design-system/commit/d3435551f0ab3833b650af2e7aaa16312ca7ce48))
11
+ * workflow to check PR title ([954bbf4](https://github.com/spaced-out/ui-design-system/commit/954bbf4cf37fae7e2db8fda19222e2c1ad157820))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * acl on release script ([7af348c](https://github.com/spaced-out/ui-design-system/commit/7af348c8597f34b4a1c9e5ae96640ec8ed393128))
17
+ * convertional commits for PR ([777b44b](https://github.com/spaced-out/ui-design-system/commit/777b44b89d1d654590f8ddea1e5e443432bb7444))
18
+ * convertional commits for PR ([237825f](https://github.com/spaced-out/ui-design-system/commit/237825fd5fdcfd087413f12d11475baad2a4a5b1))
19
+ * support for acl on release script ([4475295](https://github.com/spaced-out/ui-design-system/commit/4475295d7b6eea870749f1291c5d9acc9fe155cc))
20
+
5
21
  ### [0.0.18-beta.1](https://github.com/spaced-out/ui-design-system/compare/v0.0.18-beta.0...v0.0.18-beta.1) (2023-02-02)
6
22
 
7
23
 
package/cspell.json CHANGED
@@ -10,7 +10,9 @@
10
10
  ".storybook/public",
11
11
  ".all-contributorsrc",
12
12
  "README.md",
13
- "src/stories/INTRODUCTION.stories.mdx"
13
+ "src/stories/INTRODUCTION.stories.mdx",
14
+ ".github/CODEOWNERS",
15
+ ".github/workflows/pull_request_semantics_checker.yml"
14
16
  ],
15
17
  // Enable your dictionary by adding it to the list of `dictionaries`
16
18
  "dictionaries": ["custom-words"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.0.18-beta.1",
3
+ "version": "0.0.18-beta.2",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {