From d9bc16919cdbdb07543eb732aa872437384e296f Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Mon, 25 Mar 2024 09:53:54 -0700 Subject: [PATCH 1/2] fix: clarify `owner` input description (#118) --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2790c6d..6752829 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ jobs: ### `owner` -**Optional:** GitHub App installation owner. If empty, defaults to the current repository owner. +**Optional:** The owner of the GitHub App installation. If empty, defaults to the current repository owner. ### `repositories` diff --git a/action.yml b/action.yml index 1d2909e..09cc8fa 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ inputs: required: false deprecationMessage: "'private_key' is deprecated and will be removed in a future version. Use 'private-key' instead." owner: - description: "GitHub App owner (defaults to current repository owner)" + description: "The owner of the GitHub App installation (defaults to current repository owner)" required: false repositories: description: "Repositories to install the GitHub App on (defaults to current repository if owner is unset)" From 78e5f2ddc08efcb88fbbee6cfa3fed770ba550c3 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 25 Mar 2024 16:54:23 +0000 Subject: [PATCH 2/2] build(release): 1.9.1 [skip ci] ## [1.9.1](https://github.com/actions/create-github-app-token/compare/v1.9.0...v1.9.1) (2024-03-25) ### Bug Fixes * clarify `owner` input description ([#118](https://github.com/actions/create-github-app-token/issues/118)) ([d9bc169](https://github.com/actions/create-github-app-token/commit/d9bc16919cdbdb07543eb732aa872437384e296f)) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e076ab0..5d803bc 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "create-github-app-token", "private": true, "type": "module", - "version": "1.9.0", + "version": "1.9.1", "description": "GitHub Action for creating a GitHub App Installation Access Token", "scripts": { "build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0",