-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #259 from etn-ccis/dev
Publish 4.0.1
- Loading branch information
Showing
32 changed files
with
465 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug with a Brightlayer UI resource | ||
title: '' | ||
labels: 'bug, needs-review, brightlayer-ui' | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the bug / expected behavior | ||
|
||
#### What are the steps to reproduce? | ||
1. Go to... | ||
2. Click on... | ||
|
||
#### Screenshots / Screen recording | ||
|
||
#### Code snippet / Link to minimum reproduction example | ||
<!-- Please include a minimum code snippet (if relevant) that shows the bug, or link to a codesandbox or other running example where it can be observed --> | ||
``` | ||
CODE HERE | ||
``` | ||
|
||
#### Your environment information | ||
<!-- Describe any relevant environment information (e.g., Operating System, Library version number, browser used, etc.) where the issue was discovered --> | ||
|
||
#### Suggested fix | ||
<!-- If you have a suggestion for what might be causing the issue or where to look as a starting point, please mention it here --> | ||
|
||
#### Anything else to add? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this resource | ||
title: '' | ||
labels: 'enhancement, needs-review, brightlayer-ui' | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the desired feature/functionality | ||
|
||
#### Additional Context (where / how would this be used) | ||
|
||
#### Is this request related to a current issue? | ||
|
||
#### Suggested implementation details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- If this pull request fixes an Issue, link it below. If not, you can remove the line below --> | ||
Fixes # . | ||
|
||
<!-- Include a bulleted list summarizing the main changes you have made in this PR --> | ||
#### Changes proposed in this Pull Request: | ||
- | ||
- | ||
- | ||
|
||
<!-- Include screenshots if they will help illustrate the changes in this PR --> | ||
#### Screenshots / Screen Recording (if applicable) | ||
- | ||
|
||
|
||
<!-- Instruction for PR reviewers, if more complicated than a simple yarn start --> | ||
#### To Test: | ||
- | ||
|
||
<!-- Useful for draft pull requests --> | ||
#### Any specific feedback you are looking for? | ||
- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/login-workflow" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
open-pull-requests-limit: 1 | ||
target-branch: "dev" | ||
labels: | ||
- "external-dependency" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/login-workflow/example" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
open-pull-requests-limit: 1 | ||
target-branch: "dev" | ||
labels: | ||
- "external-dependency" | ||
- package-ecosystem: 'npm' | ||
directory: '/login-workflow' | ||
schedule: | ||
interval: 'monthly' | ||
day: 'monday' | ||
open-pull-requests-limit: 1 | ||
target-branch: 'dev' | ||
labels: | ||
- 'external-dependency' | ||
- 'brightlayer-ui' | ||
|
||
- package-ecosystem: 'npm' | ||
directory: '/login-workflow/example' | ||
schedule: | ||
interval: 'monthly' | ||
day: 'monday' | ||
open-pull-requests-limit: 1 | ||
target-branch: 'dev' | ||
labels: | ||
- 'external-dependency' | ||
- 'brightlayer-ui' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Add brightlayer-ui label to any root file changes on fork pull requests | ||
brightlayer-ui: | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
master: ['hotfix/*', 'release/*', 'dev/*', 'dev*'] | ||
external-dependency: ['combined/*', 'combined-dependabots/*'] | ||
external-dependency: ['combined/*', 'combined-dependabots/*'] | ||
brightlayer-ui: ['*', '*/*'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: "Fork PR Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: PR Labeler | ||
on: | ||
pull_request: | ||
types: [opened] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pr-labeler: | ||
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: TimonVS/pr-labeler-action@v4 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
configuration-path: .github/pr-labeler.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Tagging | ||
|
||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
CURRENT_BRANCH: ${{ github.ref_name }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tag-login-workflow-package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd login-workflow && yarn tag:package -b ${CURRENT_BRANCH} |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @emclaug2 @daileytj @jeffvg | ||
* @surajeaton @daileytj @JeffGreiner-eaton @joebochill |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,26 +67,26 @@ | |
}, | ||
"@brightlayer-ui/[email protected]": { | ||
"licenses": "BSD-3-Clause", | ||
"repository": "https://github.com/brightlayer-ui/angular-component-library", | ||
"licenseUrl": "https://github.com/brightlayer-ui/angular-component-library/raw/master/LICENSE", | ||
"repository": "https://github.com/etn-ccis/blui-angular-component-library", | ||
"licenseUrl": "https://github.com/etn-ccis/blui-angular-component-library/raw/master/LICENSE", | ||
"parents": "example" | ||
}, | ||
"@brightlayer-ui/[email protected]": { | ||
"licenses": "BSD-3-Clause", | ||
"repository": "https://github.com/brightlayer-ui/angular-themes", | ||
"licenseUrl": "https://github.com/brightlayer-ui/angular-themes/raw/master/LICENSE", | ||
"repository": "https://github.com/etn-ccis/blui-angular-themes", | ||
"licenseUrl": "https://github.com/etn-ccis/blui-angular-themes/raw/master/LICENSE", | ||
"parents": "example" | ||
}, | ||
"@brightlayer-ui/[email protected]": { | ||
"licenses": "BSD-3-Clause", | ||
"repository": "https://github.com/brightlayer-ui/icons", | ||
"licenseUrl": "https://github.com/brightlayer-ui/icons", | ||
"repository": "https://github.com/etn-ccis/blui-icons", | ||
"licenseUrl": "https://github.com/etn-ccis/blui-icons", | ||
"parents": "example" | ||
}, | ||
"@brightlayer-ui/[email protected]": { | ||
"licenses": "BSD-3-Clause", | ||
"repository": "https://github.com/brightlayer-ui/icons", | ||
"licenseUrl": "https://github.com/brightlayer-ui/icons/raw/master/LICENSE", | ||
"repository": "https://github.com/etn-ccis/blui-icons", | ||
"licenseUrl": "https://github.com/etn-ccis/blui-icons/raw/master/LICENSE", | ||
"parents": "example" | ||
}, | ||
"[email protected]": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.