6 Commits
v0 ... v1.0.1

Author SHA1 Message Date
jimehbot[bot]
e58fa0f2f8 chore(main): release 1.0.1 (#5) 2023-05-19 00:12:02 +01:00
b74b3c77fc fix(action): tweak metadata for GitHub Marketplace (#4) 2023-05-19 00:10:29 +01:00
9c7745702d ci(release): use v1 instead of main of self 2023-05-19 00:08:55 +01:00
b533724221 docs(readme): update main description text 2023-05-19 00:08:46 +01:00
jimehbot[bot]
7ab7b53063 chore(main): release 1.0.0 (#3) 2023-05-18 23:48:28 +01:00
d4f686ef9f chore(release): bump version to 1.0.0
Release-As: 1.0.0
2023-05-18 23:47:04 +01:00
5 changed files with 32 additions and 16 deletions

View File

@@ -1,3 +1,3 @@
{
".": "0.0.1"
".": "1.0.1"
}

View File

@@ -29,7 +29,7 @@ jobs:
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
- name: MAJOR and MAJOR.MINOR tags
if: ${{ steps.release.outputs.release_created }}
uses: jimeh/update-tags-action@main
uses: jimeh/update-tags-action@v1
with:
tags: |
v${{ steps.release.outputs.major }}

View File

@@ -1,5 +1,19 @@
# Changelog
## [1.0.1](https://github.com/jimeh/update-tags-action/compare/v1.0.0...v1.0.1) (2023-05-18)
### Bug Fixes
* **action:** tweak metadata for GitHub Marketplace ([#4](https://github.com/jimeh/update-tags-action/issues/4)) ([b74b3c7](https://github.com/jimeh/update-tags-action/commit/b74b3c77fc20bdfd61e29dbf680a9f84612e5fda))
## [1.0.0](https://github.com/jimeh/update-tags-action/compare/v0.0.1...v1.0.0) (2023-05-18)
### Miscellaneous Chores
* **release:** bump version to 1.0.0 ([d4f686e](https://github.com/jimeh/update-tags-action/commit/d4f686ef9ff51ff4426907f89983bd286903c23e))
## 0.0.1 (2023-05-18)

View File

@@ -4,7 +4,7 @@
<p align="center">
<strong>
Create/update git tags via GitHub API.
Easily create/update one or more Git tags in a GitHub repository.
</strong>
</p>
@@ -23,25 +23,25 @@
</a>
</p>
A simple action which makes it easy to create/update one or more tags on a
GitHub repository.
Generally useful for moving major (`v1`) and minor (`v1.2`) tags to same commit
as the latest `v1.x.x` tag. This action uses itself to move it's own major and
minor tags.
as the latest `v1.x.x` tag.
This action
[uses itself](https://github.com/jimeh/update-tags-action/blob/main/.github/workflows/ci.yml)
to move its own major and minor tags.
## Examples
### Basic
```yaml
- uses: jimeh/update-tags-action@v0
- uses: jimeh/update-tags-action@v1
with:
tags: v1,v1.2
```
```yaml
- uses: jimeh/update-tags-action@v0
- uses: jimeh/update-tags-action@v1
with:
tags: |
v1
@@ -67,7 +67,7 @@ jobs:
steps:
- uses: jimeh/release-please-manifest-action@v1
id: release-please
- uses: jimeh/update-tags-action@v0
- uses: jimeh/update-tags-action@v1
with:
tags: |
v${{ steps.release-please.outputs.major }}

View File

@@ -1,6 +1,11 @@
name: "Update Tags Action"
description: "Create/update Git tags to point to a given sha or ref"
name: "update-tags-action"
description: "Easily create/update one or more tags in a GitHub repository."
author: "jimeh"
branding:
icon: "tag"
color: "blue"
inputs:
tags:
description: "List/CSV of tags to create/update."
@@ -31,6 +36,3 @@ outputs:
runs:
using: "node16"
main: "dist/index.js"
branding:
icon: "tag"
color: "blue"