-
Notifications
You must be signed in to change notification settings - Fork 2
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 #90 from etn-ccis/dev
Update master
- Loading branch information
Showing
17 changed files
with
1,271 additions
and
233 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @JeffGreiner-eaton @daileytj @surajeaton |
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,34 @@ | ||
--- | ||
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,15 @@ | ||
--- | ||
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,29 @@ | ||
<!-- 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
directory: '/eslint-config' | ||
schedule: | ||
interval: 'monthly' | ||
day: 'monday' | ||
open-pull-requests-limit: 1 | ||
target-branch: 'dev' | ||
labels: | ||
- 'external-dependency' | ||
|
||
- package-ecosystem: 'npm' | ||
directory: '/prettier-config' | ||
schedule: | ||
interval: 'monthly' | ||
day: 'monday' | ||
open-pull-requests-limit: 1 | ||
target-branch: 'dev' | ||
labels: | ||
- 'external-dependency' |
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,18 @@ | ||
name: blui-pr-actions | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
pr-labels: | ||
uses: etn-ccis/blui-automation/.github/workflows/blui-labels.yml@dev | ||
secrets: inherit | ||
|
||
pr-comment: | ||
uses: etn-ccis/blui-automation/.github/workflows/blui-comment.yml@dev | ||
secrets: inherit |
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 @@ | ||
name: Tagging | ||
|
||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
CURRENT_BRANCH: ${{ github.ref_name }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tag-prettier-package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd prettier-config && yarn tag:package -b ${CURRENT_BRANCH} -s -prettier-config | ||
tag-lint-package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd eslint-config && yarn tag:package -b ${CURRENT_BRANCH} -s -eslint-config | ||
|
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
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
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.