@quicksketch I noticed that when you do release, you commit release number. Like here: https://github.com/backdrop/backdrop/commit/22c5a6dee045592aede782ad9165... And then revert it back: https://github.com/backdrop/backdrop/commit/6d135e38a3acc9432cc94ae49c81...
Do you upload release asset manually or project_github does so?
Maybe we should add code to project_github or implement release handler for backdrop/backdrop to automize this process.
What do you think ?
Recent comments
This relates to a problem with creating a View of Projects on a site using MySQL >= 8.0.3 https://github.com/backdrop/backdrop-issues/issues/5795 I can't be at the meeting this...
Dec 5th Weekly Dev Meeting
Additionally, "outside" means a file that is located outside a module folder. The second parameter of module_load_include() is the name of a module, so, this function assumes that you are loading a...
How to include other files in module?
Yes, it does mean outside your functions. You can use module_load_include() within functions but not outside. The YouTube module gives an example: <?php /** * @file * Youtube field module adds...
How to include other files in module?