Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 2.3 KB

File metadata and controls

57 lines (38 loc) · 2.3 KB

Contributing

We appreciate your interest in contributing to the flutter_facebook_app_events plugin. Contributions are essential for the growth and improvement of this project.

How to Contribute

  1. Fork the Repository: Start by forking the repository to your GitHub account.

  2. Clone Your Fork: Clone your forked repository to your local machine:

    git clone https://github.com/your-username/flutter_facebook_app_events.git
    cd flutter_facebook_app_events
  3. Create a Branch: Create a new branch for your feature or bug fix:

    git checkout -b your-branch-name
  4. Make Changes: Implement your changes, ensuring you follow the existing code style.

  5. Commit Changes: Commit your changes with a clear and concise commit message:

    git add .
    git commit -m "Description of your changes"
  6. Push to GitHub: Push your changes to your forked repository:

    git push origin your-branch-name
  7. Submit a Pull Request: Open a pull request to the main repository. Provide a detailed description of your changes and reference any related issues.

Reporting Issues

If you encounter any bugs or have suggestions for enhancements, please open an issue. Provide as much detail as possible to help us understand and address the issue promptly.

Use the configured Github issue report template when reporting an issue.

Make sure to state your observations and expectations as objectively and informative as possible so that we can understand your need and be able to troubleshoot.

Code of Conduct

We are committed to fostering a welcoming and respectful community. By participating in this project, you agree to adhere to our Code of Conduct.

Release Process

To trigger a release deployment, create and push a tag in the format v<major>.<minor>.<patch>. For example:

git tag v1.2.3
git push origin v1.2.3

You can view existing tags here.

Thank you for contributing to flutter_facebook_app_events!