Skip to content

Commit 77073a9

Browse files
committed
2 parents 0141592 + 5c6e202 commit 77073a9

File tree

20 files changed

+6164
-71125
lines changed

20 files changed

+6164
-71125
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If you want to help improve the docs, it's a good idea to let others know what y
4444

4545
### Setup
4646

47-
1. Fork the project by navigating to the main [repository](https://github.com/IBM/carbon-components-angular) and clicking the **Fork** button on the top-right corner.
47+
1. Fork the project by navigating to the main [repository](https://github.com/carbon-design-system/carbon-components-angular) and clicking the **Fork** button on the top-right corner.
4848

4949
2. Navigate to your forked repository and copy the **SSH url**. Clone your fork by running the following in your terminal:
5050

@@ -58,7 +58,7 @@ If you want to help improve the docs, it's a good idea to let others know what y
5858
3. Once cloned, you will see `origin` as your default remote, pointing to your personal forked repository. Add a remote named `upstream` pointing to the main `carbon-components-angular`:
5959

6060
```
61-
$ git remote add upstream [email protected]:IBM/carbon-components-angular.git
61+
$ git remote add upstream [email protected]:carbon-design-system/carbon-components-angular.git
6262
$ git remote -v
6363
```
6464

@@ -102,7 +102,7 @@ If your issue appears to be a bug, and hasn't been reported, open a new issue. H
102102
$ git push origin { YOUR_BRANCH_NAME }
103103
```
104104

105-
8. In Github, navigate to [IBM/carbon-components-react](https://github.com/IBM/carbon-components-react) and click the button that reads "Compare & pull request".
105+
8. In Github, navigate to [carbon-design-system/carbon-components-angular](https://github.com/carbon-design-system/carbon-components-angular) and click the button that reads "Compare & pull request".
106106

107107
9. Write a title and description, the click "Create pull request".
108108

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Closes IBM/carbon-components-angular#
1+
Closes carbon-design-system/carbon-components-angular#
22

33
{{short description}}
44

.github/workflows/check-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
node-version: [16.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- name: Run build
@@ -28,7 +28,7 @@ jobs:
2828
cd dist
2929
npm pack
3030
- name: Upload dist
31-
uses: actions/upload-artifact@v2
31+
uses: actions/upload-artifact@v3
3232
with:
3333
name: dist
3434
path: dist/carbon-components-angular-0.0.0.tgz
@@ -45,13 +45,13 @@ jobs:
4545
node-version: [16.x]
4646

4747
steps:
48-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v3
4949
- name: Use Node.js ${{ matrix.node-version }}
50-
uses: actions/setup-node@v1
50+
uses: actions/setup-node@v3
5151
with:
5252
node-version: ${{ matrix.node-version }}
5353
- name: Download dist
54-
uses: actions/download-artifact@v2
54+
uses: actions/download-artifact@v3
5555
with:
5656
name: dist
5757
- run: |

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818

1919
# Initializes the CodeQL tools for scanning.
2020
- name: Initialize CodeQL

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
node-version: [16.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm i

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<p align="center">
44
An Angular implementation of the Carbon Design System
55
<br /><br />
6-
<a href="https://travis-ci.com/IBM/carbon-components-angular">
7-
<img src="https://travis-ci.com/IBM/carbon-components-angular.svg?branch=master" />
6+
<a href="https://github.com/carbon-design-system/carbon-components-angular/actions/workflows/publish.yml">
7+
<img src="https://github.com/carbon-design-system/carbon-components-angular/actions/workflows/publish.yml/badge.svg" />
88
</a>
99
<a href="https://www.npmjs.com/package/carbon-components-angular">
1010
<img src="https://img.shields.io/npm/v/carbon-components-angular.svg" />
@@ -45,8 +45,8 @@ That's it! Now we can run `npm start` and start building out our application!
4545

4646
### Support
4747

48-
- For general usage questions, or other discussions visit our [Github Discussions](https://github.com/IBM/carbon-components-angular/discussions)
49-
- For things that are broken or need enhancement, [open an issue](https://github.com/IBM/carbon-components-angular/issues/new)
48+
- For general usage questions, or other discussions visit our [Github Discussions](https://github.com/carbon-design-system/carbon-components-angular/discussions)
49+
- For things that are broken or need enhancement, [open an issue](https://github.com/carbon-design-system/carbon-components-angular/issues/new)
5050
- For quick usage questions:
5151
- Join the [Carbon Design System Discord](https://discord.gg/Wys7J95Mhw)!
5252
- IBMers should use our #carbon-ng Slack channel
@@ -83,10 +83,10 @@ How to read this table:
8383
### Contributing
8484

8585
#### IBMers contributing
86-
**If you are an IBMer**, you must complete the steps at [W3 Developer](https://w3.ibm.com/developer/docs/open-source/contributing/) before contributing to any open source projects. See our [contributing guidelines](https://github.com/IBM/carbon-components-angular/blob/master/.github/CONTRIBUTING.md) for more details.
86+
**If you are an IBMer**, you must complete the steps at [W3 Developer](https://w3.ibm.com/developer/docs/open-source/contributing/) before contributing to any open source projects. See our [contributing guidelines](https://github.com/carbon-design-system/carbon-components-angular/blob/master/.github/CONTRIBUTING.md) for more details.
8787

8888
#### Quickstart
89-
- fork IBM/carbon-components-angular and clone it locally
89+
- fork carbon-design-system/carbon-components-angular and clone it locally
9090
- run `npm install` to grab all the dependencies, then `npm run storybook` to start storybook
9191
- **if you are adding a component**:
9292
- add a folder with your component code, styles, tests and story under `src`
@@ -135,8 +135,8 @@ To keep our build dependencies local we use npm scripts to run our webpack, gulp
135135
- `npm test` to run tests
136136

137137
### Resources
138-
- [Style guide (WIP)](https://github.com/IBM/carbon-components-angular/wiki/Style-guide)
139-
- [General component API guidelines (WIP)](https://github.com/IBM/carbon-components-angular/wiki/Component-API-guidelines)
138+
- [Style guide (WIP)](https://github.com/carbon-design-system/carbon-components-angular/wiki/Style-guide)
139+
- [General component API guidelines (WIP)](https://github.com/carbon-design-system/carbon-components-angular/wiki/Component-API-guidelines)
140140
- [Angular style guide](https://angular.io/styleguide)
141141
- I18N tooling
142142
- [I18N guide](https://angular.io/guide/i18n)

0 commit comments

Comments
 (0)