
⏱️Export Issue History
Step 1: Set up the project
go mod init <module-name>Step 2: Install the "go-atlassian" library
go get -v github.com/ctreminiom/go-atlassianStep 3: Import the necessary packages
package main
import (
"encoding/csv"
"fmt"
"log"
"os"
jira "github.com/ctreminiom/go-atlassian/jira/v2"
)Step 4: Authenticate with Jira
Step 5: Execute the JQL query
Step 6: Extract the issue history
Step 7: Save the issue history to a CSV file
Step 8: Run the program

Last updated
Was this helpful?