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
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ on:
branches:
- main

permissions:
contents: write
pull-requests: write
permissions: {}

jobs:
pull-request:
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: write
outputs:
releases_created: ${{steps.release.outputs.releases_created}}
paths_released: ${{steps.release.outputs.paths_released}}
Expand Down Expand Up @@ -48,6 +49,8 @@ jobs:
with:
node-version: 24.x
- name: Publish to npm
env:
PATH_RELEASED: ${{matrix.path_released}}
run: |
cd ${{matrix.path_released}}
cd "$PATH_RELEASED"
npm publish --workspaces false --access public
Loading