From 97a1effe7a4d5362d771d246f4d8c04ef1096859 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 22 May 2026 12:05:17 +0200 Subject: [PATCH] chore: rename to `uppt` --- README.md | 8 ++++---- action.yml | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index de2c4d1..a8d8b7e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# up-action +# uppt A composite GitHub Action that turns conventional commits into a draft release PR, tags the PR on merge, and stages publishing to npm via OIDC trusted publishing. @@ -30,7 +30,7 @@ jobs: contents: write # push the `release/vX.Y.Z` branch and delete superseded ones pull-requests: write # create a release PR, update its body, close superseded PRs steps: - - uses: danielroe/up-action@v1 + - uses: danielroe/uppt@v1 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -48,7 +48,7 @@ jobs: contents: write # push the `vX.Y.Z` tag and create the GitHub release actions: write # `gh workflow run release.yml --ref vX.Y.Z` chained dispatch steps: - - uses: danielroe/up-action@v1 + - uses: danielroe/uppt@v1 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -63,7 +63,7 @@ jobs: id-token: write # OIDC claim for npm trusted publisher environment: npm # matches the trusted-publisher entry on npmjs.com steps: - - uses: danielroe/up-action@v1 + - uses: danielroe/uppt@v1 with: mode: publish ``` diff --git a/action.yml b/action.yml index 30dae8f..2066315 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'up' +name: 'uppt' description: 'Open release PRs from conventional commits, tag on merge, publish to npm via OIDC.' author: 'Daniel Roe' diff --git a/package.json b/package.json index 11197c4..87493c3 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "up-action", + "name": "uppt", "version": "0.0.1", "private": true, "description": "Composite GitHub Action to release PRs from conventional commits, tag on merge, publish to npm via OIDC.", -- 2.51.2