Skip to content

Commit

Permalink
feat: added revenuehero versioning strategy (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulsam480 authored Aug 20, 2024
1 parent 34abdd3 commit 4716da3
Show file tree
Hide file tree
Showing 267 changed files with 17,065 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
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:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ __pycache__
package-lock.json
debug.sh
.idea/
dist/test
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
[![npm version](https://img.shields.io/npm/v/release-please.svg)](https://www.npmjs.org/package/release-please)
[![codecov](https://img.shields.io/codecov/c/github/googleapis/release-please/main.svg?style=flat)](https://codecov.io/gh/googleapis/release-please)

> Fork of release-please with RevenueHero specific setup
Release Please automates CHANGELOG generation, the creation of GitHub releases,
and version bumps for your projects.

Expand Down Expand Up @@ -203,7 +205,7 @@ Release Please automates releases for the following flavors of repositories:

## Setting up Release Please

There are a variety of ways you can deploy release-please:
There are a variety of ways you can deploy release-please:

### GitHub Action (recommended)

Expand All @@ -216,7 +218,7 @@ Please see [Running release-please CLI](docs/cli.md) for all the configuration o
### Install the GitHub App

There is a probot application available, which allows you to deploy Release
Please as a GitHub App. Please see
Please as a GitHub App. Please see
[github.com/googleapis/repo-automation-bots](https://github.com/googleapis/repo-automation-bots/tree/main/packages/release-please)
for installation and configuration instructions.

Expand Down
22 changes: 22 additions & 0 deletions dist/src/bin/release-please.d.ts
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 {};
Loading

0 comments on commit 4716da3

Please sign in to comment.