.NET Template – How to automatically run git init and initial setup script after template creation?

Summary The issue at hand is the automatic execution of post-creation commands in a custom .NET Template for Clean Architecture. The goal is to initialize a Git repository, stage all files, create an initial commit, and run dotnet restore and dotnet build commands after the template is created. However, the postActions defined in the template.json … Read more

How to extern a structure variable to share it between multiple source files

Summary The issue arises from the incorrect use of the extern keyword when sharing a structure variable between multiple source files. The extern keyword is used to declare a variable that is defined elsewhere, but in this case, the variable is defined in the header file, causing a multiple definition error. Root Cause The root … Read more

Is there an API in Forge to fetch JSM customers filtered by customer details (with sorting & pagination)

Summary The question revolves around the availability of an API in Forge for Jira Service Management (JSM) that can fetch customers filtered by customer details with support for sorting and pagination. The goal is to retrieve space customers based on profile fields, custom attributes, status, etc., and sort them accordingly. Root Cause The root cause … Read more