From a34412fb9973d162137640df4cd8d337ac0ebfac Mon Sep 17 00:00:00 2001 From: Zaran Lalvani Date: Fri, 27 Dec 2024 02:27:38 -0500 Subject: [PATCH] fix: action steps (#1) --- action.yml | 13 +------------ examples/workflow.yml | 2 +- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/action.yml b/action.yml index c7ceed4..94ecd05 100644 --- a/action.yml +++ b/action.yml @@ -37,20 +37,9 @@ inputs: runs: using: 'composite' steps: - - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - with: - version: 8 - - - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'pnpm' - - name: Install relgen shell: bash - run: pnpm add -g relgen + run: npm install -g relgen - name: Generate PR description if: inputs.skip-description != 'true' diff --git a/examples/workflow.yml b/examples/workflow.yml index 8850c08..b8a8a08 100644 --- a/examples/workflow.yml +++ b/examples/workflow.yml @@ -1,4 +1,4 @@ -name: PR Assistant +name: Relgen on: pull_request: types: [opened, synchronize, reopened]