Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 3.38 KB

CONTRIBUTING.md

File metadata and controls

68 lines (52 loc) · 3.38 KB

Contributing to Cloudflare's Documentation

Issues

Open an issue when something in the content is incorrect, out-of-date, or if the documentation doesn’t match the actual functionality. The items below are covered in our issue template.

  • What is the expected behavior?
    • Link to the documentation or explain the expected outcome of following the documentation.
  • What is the actual behavior?
    • Explain what actually happens when you follow the documentation.
  • Which part of the documentation requires an update?
    • Provide a link to the page that needs an update and be specific about which section requires the update.
  • Additional information
    • Any other details or screenshots you think are relevant.
  • Issue Labels

Pull Requests

Before proposing significant changes, open an issue so that we can discuss your approach first. Only members of the Cloudflare organization can open a pull request on the repository, and they should follow the same guidance on opening an issue for significant changes. If you’re not part of the Cloudflare organization but want to contribute, fork the repository and then create a pull request.

Pull Request Guidelines

  • Commits and commit messages
    • Use smaller commits for your work to make it easier to review. In your commit messages, be specific about what you changed in the files.
    • If you are proposing a new page, use one of the content type templates.
  • Pull request titles
    • Follow the title structure of [Product Name] + work you did + affected file(s)
    • Example: [Access] fix broken link in example_file.md
  • Pull request descriptions
    • Use bullet points to summarize the changes in the commits
    • Add any other information you think is helpful or needs addressed. If your PR fixes an open issue, indicate that your PR is addressing the issue and provide a link to the issue.

Package manager

  • Yarn is the recommended package manager that must be used in installing dependencies.
  • Generated yarn.lock files must be committed to git.

A member of the Product Content Experience team will review the pull request. If the changes are straightforward, the pull request is approved and can be merged. If the pull request is more technical and requires an additional review, the new reviewer will leave any additional feedback. If a pull request is not approved, the “won't fix” label is applied and a comment is added to explain why the pull request was closed.

Workers Playground

If you are adding a code snippet to the docs that is:

  1. A fully contained, valid Worker (i.e. it does not require external dependencies or specific bindings)
  2. Only JavaScript

you can add playground: true to the code block metadata to render a button to let users open the Worker in the Playground. For example:

```js
---
playground: true
---
export default {
  async fetch(request) {
    /**
     * Replace `remote` with the host you wish to send requests to
     */
    const remote = "https://example.com";

    return await fetch(remote, request);
  },
};
```

would render as

Screenshot 2024-02-20 at 14 29 22