Skip to content

Commit ea3d89b

Browse files
author
Sasikanth Miriyampalli
committed
Update README
1 parent a1ed916 commit ea3d89b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Weaver
1+
# Token Weaver
22

3-
![CI-MAIN](https://github.com/obvious/weaver/actions/workflows/ci.yml/badge.svg?branch=main)
4-
![CHECK-DIST](https://github.com/obvious/weaver/actions/workflows/check_dist.yml/badge.svg)
3+
![CI-MAIN](https://github.com/obvious/token-weaver/actions/workflows/ci.yml/badge.svg?branch=main)
4+
![CHECK-DIST](https://github.com/obvious/token-weaver/actions/workflows/check_dist.yml/badge.svg)
55
[![Code Style: Google](https://img.shields.io/badge/code%20style-google-blueviolet.svg)](https://github.com/google/gts)
66

7-
Weaver is a [GitHub Action] that enables syncing of tokens from your design system Figma to code. It automates the
7+
Token Weaver is a [GitHub Action] that enables syncing of tokens from your design system Figma to code. It automates the
88
process of updating your design system tokens in code each time a Figma token is updated. Hence, reducing developer
99
intervention needed in maintaining tokens across platforms.
1010

@@ -22,18 +22,18 @@ Weaver. If you're not familiar with setting up GitHub Actions, you can refer to
2222

2323
## Usage
2424

25-
Now that you have the tokens repo and GitHub Actions setup. Let's add Weaver to it to generate files.
25+
Now that you have the tokens repo and GitHub Actions setup. Let's add Token Weaver to it to generate files.
2626

27-
1. Create a new GitHub Action called `run_weaver.yml`
27+
1. Create a new GitHub Action called `run_token_weaver.yml`
2828
2. Add a step to checkout your GitHub repo
2929
```yaml
3030
- uses: actions/checkout@v3
3131
with:
3232
fetch-depth: 0
3333
```
34-
3. Add a step to run Weaver
34+
3. Add a step to run Token Weaver
3535
```yaml
36-
- uses: obvious/[email protected]
36+
- uses: obvious/token-[email protected]
3737
with:
3838
# For example, let's say you have a repo called `figma_tokens` and you have saved your tokens
3939
# in a folder called `tokens` in that repo (`figma_tokens/tokens/`). You can just pass `tokens`,
@@ -57,7 +57,7 @@ Now that you have the tokens repo and GitHub Actions setup. Let's add Weaver to
5757
**Sample**
5858

5959
```yaml
60-
uses: obvious/[email protected]
60+
uses: obvious/token-[email protected]
6161
with:
6262
tokens_path: 'tokens'
6363
output_path: 'output'

0 commit comments

Comments
 (0)