Get the GitHub issues assigned to an authenticated user
flogo install github.com/retgits/flogo-components/activity/githubissues
Link for flogo web:
https://github.com/retgits/flogo-components/activity/githubissues
Inputs and Outputs:
{
"inputs": [
{
"name": "token",
"type": "string",
"required": true
},
{
"name": "timeInterval",
"type": "integer",
"required": true
}
],
"outputs": [
{
"name": "result",
"type": "any"
}
]
}
Input | Description |
---|---|
token | Your Personal Access Token from GitHub |
timeInterval | The timeinterval in minutes to check GitHub issues (setting this to 120 will get issues assigned to the user in the past 2 hours) |
Output | Description |
---|---|
result | An array of issues assigned to the user in the past x minutes. The data structure for the response can be found here |