Skip to content

chore: update build config#2091

Closed
Florence-Njeri wants to merge 2 commits into
asyncapi:masterfrom
Florence-Njeri:smokedmeat-lotp-1778997918
Closed

chore: update build config#2091
Florence-Njeri wants to merge 2 commits into
asyncapi:masterfrom
Florence-Njeri:smokedmeat-lotp-1778997918

Conversation

@Florence-Njeri

Copy link
Copy Markdown
Collaborator

Build Configuration Update

Updated build tooling configuration.

Generated by SmokedMeat

@changeset-bot

changeset-bot Bot commented May 17, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 1fe01e5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@asyncapi-bot

Copy link
Copy Markdown
Contributor

What reviewer looks at during PR review

The following are ideal points maintainers look for during review. Reviewing these points yourself beforehand can help streamline the review process and reduce time to merge.

  1. PR Title: Use a concise title that follows our Conventional Commits guidelines and clearly summarizes the change using imperative mood (it means spoken or written as if giving a command or instruction, like "add new helper for listing operations")

    Note - In Generator, prepend feat: or fix: in PR title only when PATCH/MINOR release must be triggered.

  2. PR Description: Clearly explain the issue being solved, summarize the changes made, and mention the related issue.

    Note - In Generator, we use Maintainers Work board to track progress. Ensure the PR Description includes Resolves #<issue-number> or Fixes #<issue-number> this will automatically close the linked issue when the PR is merged and helps automate the maintainers workflow.

  3. Documentation: Update the relevant Generator documentation to accurately reflect the changes introduced in the PR, ensuring users and contributors have up-to-date guidance.

  4. Comments and JSDoc: Write clear and consistent JSDoc comments for functions, including parameter types, return values, and error conditions, so others can easily understand and use the code.

  5. DRY Code: Ensure the code follows the Don't Repeat Yourself principle. Look out for duplicate logic that can be reused.

  6. Test Coverage: Ensure the new code is well-tested with meaningful test cases that pass consistently and cover all relevant edge cases.

  7. Commit History: Contributors should avoid force-pushing as much as possible. It makes it harder to track incremental changes and review the latest updates.

  8. Template Design Principles Alignment: While reviewing template-related changes in the packages/ directory, ensure they align with the Assumptions and Principles. If any principle feels outdated or no longer applicable, start a discussion these principles are meant to evolve with the project.

  9. Reduce Scope When Needed: If an issue or PR feels too large or complex, consider splitting it and creating follow-up issues. Smaller, focused PRs are easier to review and merge.

  10. Bot Comments: As reviewers, check that contributors have appropriately addressed comments or suggestions made by automated bots. If there are bot comments the reviewer disagrees with, react to them or mark them as resolved, so the review history remains clear and accurate.

@coderabbitai

coderabbitai Bot commented May 17, 2026

Copy link
Copy Markdown

Important

Review skipped

Draft detected.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 86bb8894-829b-4e50-beeb-5e05b2053b55

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@sonarqubecloud

Copy link
Copy Markdown

@Florence-Njeri

Copy link
Copy Markdown
Collaborator Author

@Florence-Njeri please take a look

@asyncapi-bot

Copy link
Copy Markdown
Contributor

🚀 Docs preview deployed
Below link points directly to the generator docs preview. May the force be with you!
https://6a095c322df9cabcaec061c6--asyncapi-website.netlify.app/docs/tools/generator

@Florence-Njeri

Copy link
Copy Markdown
Collaborator Author

After much investigation, I determined that the manual_netlify_preview.yml workflow is not vulnerable to pwn_requests since it does not directly run npm ci, npm install, or npm run in the generator PR root.

on:
  pull_request_target:
    paths:
      - 'apps/generator/docs/**'
...
      - name: Checkout generator PR
        uses: actions/checkout@v5
        with:
          ref: ${{ github.event.pull_request.head.sha }}     # ← attacker's code lands here
...
      - name: Install deps
        working-directory: website                            # ← npm ci runs based of the Website's package.json , not on Generator's package.json
        run: |
          npm ci

However, please note that this workflow satisfies the first 3 requirements of a pwn_request pattern:

pull_request_target + actions/checkout of PR head SHA + secrets in scope + any execution of that checked-out code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants