Skip to content

Commit

Permalink
Add jenkins extension (raycast#2870)
Browse files Browse the repository at this point in the history
* add: jenkins extension

* update(mvp): jenkins

* fix: lint

* update: icon image

* remove test extension

* feat: global search

* add: LICENSE

* optimize: delete jenkins

* optimize: navigation title

* update: packages.json

* feat: manage builds

* update: search

* Update CHANGELOG.md

* Update README.md

* Update package.json

* fix: review

* optimize: use List.EmptyView

* Added conditional text to noView

Co-authored-by: Per Nielsen Tikær <[email protected]>
  • Loading branch information
k8scat and pernielsentikaer authored Sep 15, 2022
1 parent b48924f commit f9343fc
Show file tree
Hide file tree
Showing 16 changed files with 4,200 additions and 0 deletions.
5 changes: 5 additions & 0 deletions extensions/jenkins/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root = true

[*.{ts,tsx}]
indent_style = space
indent_size = 2
10 changes: 10 additions & 0 deletions extensions/jenkins/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"]
}
7 changes: 7 additions & 0 deletions extensions/jenkins/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/jenkins/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/jenkins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Jenkins Changelog

## [Initial Version] - 2022-09-15
21 changes: 21 additions & 0 deletions extensions/jenkins/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 K8sCat <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
17 changes: 17 additions & 0 deletions extensions/jenkins/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Jenkins

Manage your Jenkins.

## Features

- Manage Jenkins
- Manage jobs
- Global search

## Author

K8sCat <[email protected]>

## License

[MIT](./LICENSE)
Binary file added extensions/jenkins/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/jenkins/assets/iconnv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f9343fc

Please sign in to comment.