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
5 changes: 4 additions & 1 deletion .github/workflows/release-with-changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ jobs:
uses: changesets/action@v1
id: release
with:
version: npx -p @changesets/cli@2.27.7 changeset version
# `changeset version` only rewrites package.json/CHANGELOG files; it never runs an
# install, so the root package-lock.json drifts out of sync with the bumped manifests.
# Refresh the lockfile (lockfile-only, no scripts) so the release PR carries it too.
version: npx -p @changesets/cli@2.27.7 changeset version && npm install --package-lock-only --ignore-scripts
commit: "chore(release): release and bump versions of packages"
title: "chore(release): release and bump versions of packages"
publish: npx -p @changesets/cli@2.27.7 changeset publish
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/verify-ai-disclosure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ permissions:

jobs:
verify-ai-disclosure:
# it runs only if PR actor is not a bot, at least not a bot that we know
if: |
(github.event.pull_request.user.login != 'asyncapi-bot' &&
github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event.pull_request.user.login != 'dependabot-preview[bot]')
runs-on: ubuntu-latest
steps:
- name: Check PR body for AI-assistance disclosure
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading