forked from patternfly/react-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'patternfly:main' into main
- Loading branch information
Showing
25 changed files
with
2,315 additions
and
628 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
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 was deleted.
Oops, something went wrong.
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,39 @@ | ||
name: Process new issues | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/patternfly/projects/7 | ||
github-token: ${{ secrets.GH_PROJECTS }} | ||
label-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Team Membership Checker | ||
# You may pin to the exact commit or the version. | ||
# uses: TheModdingInquisition/actions-team-membership@a69636a92bc927f32c3910baac06bacc949c984c | ||
uses: TheModdingInquisition/[email protected] | ||
with: | ||
# Repository token. GitHub Action token is used by default(recommended). But you can also use the other token(e.g. personal access token). | ||
token: ${{ secrets.GH_READ_ORG_TOKEN }} | ||
# The team to check for. | ||
team: 'frequent-flyers' | ||
# The organization of the team to check for. Defaults to the context organization. | ||
organization: 'patternfly' | ||
# If the action should exit if the user is not part of the team. | ||
exit: true | ||
|
||
- name: Add label if user is a team member | ||
run: | | ||
curl -X POST \ | ||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \ | ||
-d '{"labels":["PF Team"]}' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,15 @@ | |
"serve:a11y": "yarn workspace @patternfly/react-log-viewer serve:a11y" | ||
}, | ||
"devDependencies": { | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"typescript": "^4.7.4", | ||
"@babel/core": "^7.19.6", | ||
"@babel/preset-env": "^7.19.4", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-flow": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@testing-library/react": "^13.4.0", | ||
"@testing-library/user-event": "14.4.3", | ||
"@testing-library/jest-dom": "5.16.5", | ||
"@testing-library/dom": "9.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.42.0", | ||
"@typescript-eslint/parser": "^5.42.0", | ||
"@types/react": "^18", | ||
|
@@ -43,18 +49,13 @@ | |
"prettier": "2.7.1", | ||
"jest": "^29.2.2", | ||
"babel-jest": "^29.2.2", | ||
"@babel/core": "^7.19.6", | ||
"@babel/preset-env": "^7.19.4", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-flow": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@testing-library/react":"^13.4.0", | ||
"@testing-library/user-event": "14.4.3", | ||
"@testing-library/jest-dom":"5.16.5", | ||
"@testing-library/dom": "9.0.0", | ||
"jest-environment-jsdom": "^29.2.2", | ||
"jest-canvas-mock": "^2.4.0", | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"rimraf": "^2.6.2", | ||
"serve": "^14.1.2", | ||
"rimraf": "^2.6.2" | ||
} | ||
"typescript": "^4.7.4" | ||
}, | ||
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" | ||
} |
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.