-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96fdf56
commit 6c11aa0
Showing
19 changed files
with
1,743 additions
and
1,791 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 |
---|---|---|
|
@@ -4,8 +4,8 @@ about: Create a bug report to fix an existing issue. | |
title: '' | ||
labels: bugfix | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Please do not report security vulnerabilities here**. Submit all security issues to [[email protected]](mailto:[email protected]). | ||
|
||
**Thank you in advance for helping us to improve this library!** Please read through the template below and answer all relevant questions. Your additional work here is greatly appreciated and will help us respond as quickly as possible. Finally, to avoid duplicates, please search existing Issues before submitting one here. | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ about: Suggest new functionality for this project. | |
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Please do not report security vulnerabilities here**. Submit all security issues to [[email protected]](mailto:[email protected]). | ||
|
||
**Thank you in advance for helping us to improve this library!** Please read through the template below and answer all relevant questions. Your additional work here is greatly appreciated and will help us respond as quickly as possible. Finally, to avoid duplicates, please search existing Issues before submitting one here. | ||
|
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
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,6 +1,6 @@ | ||
# Change Log | ||
|
||
We do not provide a change log as each Pull-Request merged in will be added to | ||
We do not provide a change log as each Pull-Request merged in will be added to | ||
release notes that are automatically generated. | ||
|
||
[View Release Notes](/releases) |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
## Reporting a Vulnerability | ||
|
||
If you find a vulnerability please fill out our [OSS Vulnerability Form](https://forms.gle/eQy85QNmjSDdpUbB6). If you don't hear back from us within 5 days | ||
If you find a vulnerability please fill out our [OSS Vulnerability Form](https://forms.gle/eQy85QNmjSDdpUbB6). If you don't hear back from us within 5 days | ||
please email [[email protected]](mailto:[email protected]) directly. |
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 |
---|---|---|
@@ -1,45 +1,48 @@ | ||
{ | ||
"name": "action-tls-monitor", | ||
"name": "tls-monitor", | ||
"version": "1.0.0", | ||
"description": "Monitor SSL/TLS certificates for your domains.", | ||
"main": "dist/main.js", | ||
"repository": "[email protected]:bluenovaio/action-tls-monitor.git", | ||
"author": "@bluenovaio", | ||
"repository": "[email protected]:zrosenbauer/tls-monitor.git", | ||
"author": "@zrosenbauer", | ||
"license": "MIT", | ||
"private": false, | ||
"scripts": { | ||
"build": "tsc", | ||
"format": "prettier --write **/*.ts", | ||
"format-check": "prettier --check **/*.ts", | ||
"lint": "eslint src/**/*.ts", | ||
"type:check": "tsc --noEmit", | ||
"format:fix": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"lint:check": "eslint src/**/*.ts", | ||
"lint:fix": "eslint src/**/*.ts --fix", | ||
"package": "ncc build --source-map --license licenses.txt", | ||
"test": "jest" | ||
"test": "jest --passWithNoTests" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.4.0", | ||
"@actions/core": "^1.10.0", | ||
"@slack/webhook": "^6.1.0", | ||
"gaxios": "^4.3.0", | ||
"gaxios": "^5.0.2", | ||
"lodash": "^4.17.21" | ||
}, | ||
"devDependencies": { | ||
"@jest/types": "^27.4.2", | ||
"@types/jest": "^27.4.0", | ||
"@types/lodash": "^4.14.178", | ||
"@types/node": "^17.0.8", | ||
"@typescript-eslint/eslint-plugin": "^5.9.1", | ||
"@typescript-eslint/parser": "^5.9.1", | ||
"@vercel/ncc": "0.33.1", | ||
"eslint": "^8.8.0", | ||
"eslint-config-semistandard": "^16.0.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-plugin-import": "^2.25.4", | ||
"@jest/types": "^29.4.3", | ||
"@types/jest": "^29.4.0", | ||
"@types/lodash": "^4.14.191", | ||
"@types/node": "^18.14.0", | ||
"@typescript-eslint/eslint-plugin": "^5.52.0", | ||
"@typescript-eslint/parser": "^5.52.0", | ||
"@vercel/ncc": "0.36.1", | ||
"eslint": "^8.34.0", | ||
"eslint-config-semistandard": "^17.0.0", | ||
"eslint-config-standard": "^17.0.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-n": "^15.6.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "6.0.0", | ||
"jest": "^27.4.7", | ||
"prettier": "^2.5.1", | ||
"ts-jest": "^27.1.3", | ||
"ts-node": "^10.1.0", | ||
"typescript": "^4.5.4", | ||
"webpack": "^5.66.0" | ||
"eslint-plugin-promise": "6.1.1", | ||
"jest": "^29.4.3", | ||
"prettier": "^2.8.4", | ||
"ts-jest": "^29.0.5", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.5", | ||
"webpack": "^5.75.0" | ||
} | ||
} |
Oops, something went wrong.