Skip to content

Commit

Permalink
fix: move ownership from zeebe-io to korthout
Browse files Browse the repository at this point in the history
The repo's ownership is moved from zeebe-io/backport-action to
korthout/backport-action. This change in ownership should also be
reflected in the action.yml, package.json, documentation and any sources
that refer to the repo specifically.
  • Loading branch information
korthout committed Dec 21, 2022
1 parent d38dc00 commit f09171e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Create backport pull requests
uses: zeebe-io/backport-action@v1-rc1
uses: korthout/backport-action@v1-rc1
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Therefore, this action is compatible with [Bors](https://bors.tech/), [GitHub Me
> You can already try it out using the latest pre-release `v1-rc1`.
> After the `v1` release, [SemVer](https://semver.org/) will be respected.
> The repo will also move from [zeebe-io/backport-action](https://github.com/zeebe-io/backport-action) to [korthout/backport-action](https://github.com/korthout/backport-action).
> You can read more about it [here](https://github.com/zeebe-io/backport-action/issues/289).
> You can read more about it [here](https://github.com/korthout/backport-action/issues/289).
## Usage

Expand All @@ -44,7 +44,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Create backport pull requests
uses: zeebe-io/backport-action@v1-rc1
uses: korthout/backport-action@v1-rc1
with:
# Optional
# Token to authenticate requests to GitHub
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Create backport pull requests
uses: zeebe-io/backport-action@v1-rc1
uses: korthout/backport-action@v1-rc1
with:
# Optional
# Token to authenticate requests to GitHub
Expand Down Expand Up @@ -158,7 +158,7 @@ The following placeholders are available and are replaced with:

Placeholder | Replaced with
------------|------------
`issue_refs` | GitHub issue references to all issues mentioned in the original pull request description seperated by a space, e.g. `#123 #456 zeebe-io/backport-action#789`
`issue_refs` | GitHub issue references to all issues mentioned in the original pull request description seperated by a space, e.g. `#123 #456 korthout/backport-action#789`
`pull_author` | The username of the original pull request's author, e.g. `korthout`
`pull_number` | The number of the original pull request that is backported, e.g. `123`
`pull_title` | The title of the original pull request that is backported, e.g. `fix: some error`
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "backport-action"
description: "Automatically backport pull requests"
author: "zeebe-io"
author: "korthout"
inputs:
github_token:
description: >
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeebe-io/backport-action.git"
"url": "git+https://github.com/korthout/backport-action.git"
},
"keywords": [
"actions",
"backport"
],
"author": "zeebe-io",
"author": "korthout",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
Expand Down
2 changes: 1 addition & 1 deletion src/backport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class Backport {
git cherry-pick -x $ancref..${headref}
\`\`\``
: dedent`Note that rebase and squash merges are not supported at this time.
For more information see https://github.com/zeebe-io/backport-action/issues/46.`;
For more information see https://github.com/korthout/backport-action/issues/46.`;

return dedent`Backport failed for \`${target}\`, ${reason}.
Expand Down

0 comments on commit f09171e

Please sign in to comment.