mirror of
https://github.com/naveenrajm7/rpmbuild.git
synced 2025-07-11 20:04:42 +00:00
2.1 KiB
2.1 KiB
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?
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
- Fork and clone the repository
- Configure and install the dependencies:
npm install
- Make sure the tests pass on your machine:
npm run test
- Create a new branch:
git checkout -b my-branch-name
- Make your change, add tests, and make sure the tests still pass
- Push to your fork and submit a pull request
- Pat your self on the back and wait for your pull request to be reviewed and merged.