-
I'm currently looking for a guide on "howto submit a nemo action" for newbies. :-) Situation: I created a new "action" on my home computer - and I would like to submit this action. The following comment by @rcalixte is the only place where some steps are described (as far as I understand): Could somebody check if the following is correct:
Is it possible to do all this on github - or do I have to install git and pull / push from my computer to my fork? Sorry for all my questions. I would be great if somebody would comment/ answer my questions. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Your process is correct and is the typical path for contributing on GitHub in general. GitHub has thorough documention for getting started with that if you are unfamiliar. Ultimately, you can structure/upload however you feel is comfortable but it is highly recommended to have There is a process where you can do this without |
Beta Was this translation helpful? Give feedback.
Your process is correct and is the typical path for contributing on GitHub in general. GitHub has thorough documention for getting started with that if you are unfamiliar.
Ultimately, you can structure/upload however you feel is comfortable but it is highly recommended to have
git
installed locally because there are helper scripts in the root of the repository that you can only run on your machine, not from the GitHub web interface. These scripts range from creating the translation template to local testing of your Action to validating that the structure of your Action is c…