Skip to content

Latest commit

 

History

History
60 lines (36 loc) · 2.11 KB

CONTRIBUTING.md

File metadata and controls

60 lines (36 loc) · 2.11 KB

Contributing to RPM Build GitHub Action

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

The following is a set of guidelines for contributing to rpm-build GitHub Action, which is listed in the GitHub Marketplace . These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Table Of Contents

What should I know before I get started?

How Can I Contribute?

Resources

What should I know before I get started?

rpmbuild

rpmbuild is a command line utility to build RPM packages.

GitHub Actions

GitHub Action is github's CICD platform , to automate your software lifecyle

How Can I Contribute?

Reporting Bugs

Report bugs using Github's issues We use GitHub issues to track public bugs. Report a bug by opening a new issue; it's that easy!

Suggesting Enhancements

If you think you have an idea which will make this project more useful to the community, add your suggestion as an issue.

Submitting a pull request

  1. Fork and clone the repository
  2. Configure and install the dependencies: npm install
  3. Make sure the tests pass on your machine: npm run test
  4. Create a new branch: git checkout -b my-branch-name
  5. Make your change, add tests, and make sure the tests still pass
  6. Push to your fork and submit a pull request
  7. Pat your self on the back and wait for your pull request to be reviewed and merged.

Resources