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

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
@@ -20,7 +20,17 @@ on:
20
20
  jobs:
21
21
  release:
22
22
  runs-on: ubuntu-latest
23
+ # Check access controls on release and tagging
23
24
  steps:
25
+ - name: Check Permissions
26
+ id: check-permissions
27
+ env:
28
+ ALLOWED_USERS: superrover, Anant-Raj
29
+ if: ${{ !contains(env.ALLOWED_USERS, github.actor) }}
30
+ run: |
31
+ echo "You don't have correct permissions to do this release"
32
+ exit 1
33
+
24
34
  # Checkout project repository
25
35
  # Added fetch-depth to fetch complete history of repo. TODO(Nishant): Customize?
26
36
  # 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,24 @@
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.3](https://github.com/spaced-out/ui-design-system/compare/v0.0.18-beta.2...v0.0.18-beta.3) (2023-02-06)
6
+
7
+ ### [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)
8
+
9
+
10
+ ### Features
11
+
12
+ * added code owners ([d343555](https://github.com/spaced-out/ui-design-system/commit/d3435551f0ab3833b650af2e7aaa16312ca7ce48))
13
+ * workflow to check PR title ([954bbf4](https://github.com/spaced-out/ui-design-system/commit/954bbf4cf37fae7e2db8fda19222e2c1ad157820))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * acl on release script ([7af348c](https://github.com/spaced-out/ui-design-system/commit/7af348c8597f34b4a1c9e5ae96640ec8ed393128))
19
+ * convertional commits for PR ([777b44b](https://github.com/spaced-out/ui-design-system/commit/777b44b89d1d654590f8ddea1e5e443432bb7444))
20
+ * convertional commits for PR ([237825f](https://github.com/spaced-out/ui-design-system/commit/237825fd5fdcfd087413f12d11475baad2a4a5b1))
21
+ * support for acl on release script ([4475295](https://github.com/spaced-out/ui-design-system/commit/4475295d7b6eea870749f1291c5d9acc9fe155cc))
22
+
5
23
  ### [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
24
 
7
25
 
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.3",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {