Skip to content

Commit f38f3e2

Browse files
committed
Update README.md
1 parent 2ac4021 commit f38f3e2

File tree

1 file changed

+9
-21
lines changed

1 file changed

+9
-21
lines changed

README.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v2
29-
- uses: butlerlogic/action-autotag@stable
29+
- uses: Klemensas/action-autotag@stable
3030
with:
3131
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
3232
```
@@ -37,7 +37,7 @@ This **order** is important!
3737
3838
```yaml
3939
- uses: actions/checkout@v2
40-
- uses: butlerlogic/action-autotag@stable
40+
- uses: Klemensas/action-autotag@stable
4141
```
4242
4343
> If the repository is not checked out first, the autotagger cannot find the package.json file.
@@ -47,7 +47,7 @@ This **order** is important!
4747
The `GITHUB_TOKEN` must be passed in. Without this, it is not possible to create a new tag. Make sure the autotag action looks like the following example:
4848

4949
```yaml
50-
- uses: butlerlogic/action-autotag@stable
50+
- uses: Klemensas/action-autotag@stable
5151
with:
5252
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
5353
```
@@ -63,7 +63,7 @@ There are several options to customize how the tag is created.
6363
By default, autotag will look for the `package.json` file in the project root. If the file is located in a subdirectory, this option can be used to point to the correct file.
6464

6565
```yaml
66-
- uses: butlerlogic/action-autotag@1.0.0
66+
- uses: Klemensas/action-autotag@stable
6767
with:
6868
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
6969
package_root: "/path/to/subdirectory"
@@ -74,7 +74,7 @@ There are several options to customize how the tag is created.
7474
By default, `package.json` uses [semantic versioning](https://semver.org/), such as `1.0.0`. A prefix can be used to add text before the tag name. For example, if `tag_prefix` is set to `v`, then the tag would be labeled as `v1.0.0`.
7575

7676
```yaml
77-
- uses: butlerlogic/action-autotag@1.0.0
77+
- uses: Klemensas/action-autotag@stable
7878
with:
7979
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
8080
tag_prefix: "v"
@@ -85,7 +85,7 @@ There are several options to customize how the tag is created.
8585
Text can also be applied to the end of the tag by setting `tag_suffix`. For example, if `tag_suffix` is ` (beta)`, the tag would be `1.0.0 (beta)`. Please note this example violates semantic versioning and is merely here to illustrate how to add text to the end of a tag name if you _really_ want to.
8686

8787
```yaml
88-
- uses: butlerlogic/action-autotag@1.0.0
88+
- uses: Klemensas/action-autotag@stable
8989
with:
9090
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
9191
tag_suffix: " (beta)"
@@ -97,7 +97,7 @@ There are several options to customize how the tag is created.
9797
changelog will be generated from the commits between the latest tag and the new tag (HEAD). Setting this option will override it witha custom message.
9898

9999
```yaml
100-
- uses: butlerlogic/action-autotag@1.0.0
100+
- uses: Klemensas/action-autotag@stable
101101
with:
102102
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
103103
tag_message: "Custom message goes here."
@@ -109,7 +109,7 @@ There are several options to customize how the tag is created.
109109
Useful for non-JavaScript projects where version may be output by a previous action.
110110

111111
```yaml
112-
- uses: butlerlogic/action-autotag@1.0.0
112+
- uses: Klemensas/action-autotag@stable
113113
with:
114114
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
115115
version: "${{ steps.previous_step.outputs.version }}"
@@ -129,16 +129,4 @@ If you are building an action that runs after this one, be aware this action pro
129129

130130
## Credits
131131

132-
This action was written and is primarily maintained by [Corey Butler](https://github.com/coreybutler).
133-
134-
# Our Ask...
135-
136-
If you use this or find value in it, please consider contributing in one or more of the following ways:
137-
138-
1. Click the "Sponsor" button at the top of the page.
139-
1. Star it!
140-
1. [Tweet about it!](https://twitter.com/intent/tweet?hashtags=github,actions&original_referer=http%3A%2F%2F127.0.0.1%3A91%2F&text=I%20am%20automating%20my%20workflow%20with%20the%20Autotagger%20Github%20action!&tw_p=tweetbutton&url=https%3A%2F%2Fgithub.com%2Fmarketplace%2Factions%2Fautotagger&via=goldglovecb)
141-
1. Fix an issue.
142-
1. Add a feature (post a proposal in an issue first!).
143-
144-
Copyright © 2019 ButlerLogic, Corey Butler, and Contributors.
132+
This action was originally created by [Corey Butler](https://github.com/coreybutler).

0 commit comments

Comments
 (0)