From d08cf0d2ec00c46d9ebff947c81d6561a6d9eaea Mon Sep 17 00:00:00 2001 From: Robin Mordasiewicz Date: Sun, 19 Nov 2023 00:03:47 -0500 Subject: [PATCH] fix(release-please.yml): remove token and path parameters from release-please action The token and path parameters were removed from the release-please action in the GitHub workflow. This is because the action already defaults to using the GITHUB_TOKEN and the root directory of the repository, making these parameters redundant. Removing them simplifies the configuration and reduces potential points of failure. --- .github/workflows/release-please.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 93e8a034..286d288e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -22,5 +22,3 @@ jobs: with: release-type: simple pull-request-header: ":robot: this is an automated release :robot:" - token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} - path: "."