Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: google-github-actions/release-please-action@v4
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- uses: google-github-actions/release-please-action@v4
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

IIRC, I set the token so that the release PR triggers CI workflows.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I have seen this be an issue before. I thought that secrets.GITHUB_TOKEN was the default token so it wouldn't trigger CI workflows, and it would need to pass in a different PAT for that to work.

If this is an issue we can try adding back the token.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. Workflows didn't run for #218

with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: release-please-config.json
3 changes: 3 additions & 0 deletions .release-please-manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.16.2"
}
10 changes: 7 additions & 3 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"release-type": "python",
"package-name": "gyp-next",
"bump-minor-pre-major": true
"packages": {
".": {
"release-type": "python",
"package-name": "gyp-next",
"bump-minor-pre-major": true
}
}
}