forked from googleapis/release-please
-
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.
feat: added revenuehero versioning strategy (#1)
- Loading branch information
1 parent
34abdd3
commit 4716da3
Showing
267 changed files
with
17,065 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
- abcd | ||
|
||
name: ci | ||
jobs: | ||
test: | ||
|
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ __pycache__ | |
package-lock.json | ||
debug.sh | ||
.idea/ | ||
dist/test |
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,22 @@ | ||
#!/usr/bin/env node | ||
import * as yargs from 'yargs'; | ||
interface ErrorObject { | ||
body?: object; | ||
status?: number; | ||
message: string; | ||
stack: string; | ||
} | ||
export declare const parser: yargs.Argv<{ | ||
debug: boolean; | ||
} & { | ||
trace: boolean; | ||
} & { | ||
plugin: (string | number)[] | never[]; | ||
}>; | ||
interface HandleError { | ||
(err: ErrorObject): void; | ||
logger?: Console; | ||
yargsArgs?: yargs.Arguments; | ||
} | ||
export declare const handleError: HandleError; | ||
export {}; |
Oops, something went wrong.