From 3e301643b7ded01b3231f72930c22ad129c8be3c Mon Sep 17 00:00:00 2001 From: SnowCait Date: Wed, 21 Dec 2022 03:56:46 +0900 Subject: [PATCH 1/3] Node.js 16 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b522aa1..c637e2f 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ outputs: response: description: 'Response JSON' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'edit' From adde58abbcdde45be221c1750560511026bb8a72 Mon Sep 17 00:00:00 2001 From: SnowCait Date: Wed, 21 Dec 2022 03:58:43 +0900 Subject: [PATCH 2/3] Trim '' --- action.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index c637e2f..a82001f 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,10 @@ -name: 'Tweet action' -description: 'Tweet in Twitter via GitHub Actions' -author: 'SnowCait' +name: Tweet action +description: Tweet in Twitter via GitHub Actions +author: SnowCait inputs: status: required: true - description: 'The text of the status update. URL encode as necessary. t.co link wrapping will affect character counts.' + description: The text of the status update. URL encode as necessary. t.co link wrapping will affect character counts. media_paths: description: | Upload media path(s). @@ -19,10 +19,10 @@ inputs: required: false outputs: response: - description: 'Response JSON' + description: Response JSON runs: - using: 'node16' - main: 'dist/index.js' + using: node16 + main: dist/index.js branding: - icon: 'edit' - color: 'blue' + icon: edit + color: blue From c8a0d3c9bed0d92291e90f42b17a4bdf428a6cc3 Mon Sep 17 00:00:00 2001 From: SnowCait Date: Wed, 21 Dec 2022 04:13:35 +0900 Subject: [PATCH 3/3] Fix CI paths filter --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b533989..2454b89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: - .github/workflows/ci.yml - dist/** - src/** + - action.yml - package-lock.json - package.json