Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 606 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (24 loc) · 606 Bytes

Contributing Guidelines

Please follow the instructions to contribute a bug fix or a new feature:

  1. Fork the repository
  2. Clone the forked repository using the command
git clone https://github.com/<YOUR-USERNAME>/n8n-nodes-pageres.git
  1. Create a new branch.
# Bug Fixes
git checkout -b fix/<WHAT-YOU-FIXING>

# Feature
git checkout -b feature/<WHAT-YOU-FIXING>
  1. Commit the changes with descriptive commit message
git add . // or file name
git commit -m '<WHAT-WAS-THE-CHANGE>'
  1. Push the changes to GitHub
git push origin main
  1. Open a Pull Request.