Skip to content

Commit 7977592

Browse files
authored
fix: Attempt to unblock luarocks-release. (#376)
Using a GitHub private access token in order to allow other actions to run on top of the `release-please` action, since otherwise they are blocked to avoid recursive actions. > You will want to configure a GitHub Actions secret with a Personal Access Token > if you want GitHub Actions CI checks to run on Release Please PRs. Ref: https://github.com/googleapis/release-please-action?tab=readme-ov-file#other-actions-on-release-please-prs
1 parent 3531de0 commit 7977592

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/luarocks-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
tags:
66
- "*"
7+
release:
8+
types:
9+
- created
710
pull_request:
811
workflow_dispatch:
912

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: google-github-actions/release-please-action@v3
16+
- uses: googleapis/release-please-action@v4
1717
with:
18-
release-type: node
19-
package-name: release-please-action
18+
release-type: simple
19+
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}

0 commit comments

Comments
 (0)