Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.52 KB

File metadata and controls

56 lines (39 loc) · 1.52 KB

Contributing to Upload to Vercel Blob GitHub Action

Thank you for considering contributing to this project! Your support helps improve and maintain the action.

How to Contribute

1. Fork the Repository

Click the "Fork" button at the top right of this repo and clone your fork locally.

git clone https://github.com/dartilesm/vercel-blob-action.git
cd vercel-blob-upload-action

2. Create a New Branch

Use a meaningful name for your branch.

git checkout -b fix/your-feature-name

3. Make Your Changes

Edit the code, fix bugs, or improve documentation.

4. Test Your Changes

Ensure your changes do not break existing functionality. Add or update tests if necessary.

5. Commit and Push

Write clear and descriptive commit messages.

git add .
git commit -m "Fix: describe your fix here"
git push origin fix/your-feature-name

6. Submit a Pull Request

Go to the original repository and open a pull request (PR). Clearly describe the changes you made and the motivation behind them.


Code Style

  • Follow consistent formatting (e.g., indent with 2 spaces or use Prettier).
  • Use clear, concise, and meaningful naming.
  • Comment where necessary.

Issues and Bugs

  • Check existing issues before opening a new one.
  • When creating an issue, include a detailed description and steps to reproduce.

Code of Conduct

Be respectful and constructive in all interactions. This project follows the Contributor Covenant.


Thank you for contributing!