1.0.4 • Published 6 years ago

alo-executor-github v1.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Github executor for Runnerty:

Config

We can config it via user and password or via token:

{
  "id": "github_default",
  "type": "@runnerty-executor-github",
  "auth":{
    "token": "MY_TOKEN_HERE"
  }
}

or

{
  "id": "github_default",
  "type": "@runnerty-executor-github",
  "auth":{
    "username": "MY_USERNAME",
    "password": "MY_PASSWORD",
  }
}

Plan

  • List issues of a repository filtering by label and update date:
{
  "id": "github_default",
  "command": "listIssues",
  "user": "runnerty",
  "repo": "runnerty",
  "options": {
    "labels": "bug",
    "since": "2018-03-06T16:00:00Z"
  }
}

Options:

NameTypeDescription
milestoneinteger or stringIf an integer is passed, it should refer to a milestone by its number field. If the string * is passed, issues with any milestone are accepted. If the string none is passed, issues without milestones are returned
statestringIndicates the state of the issues to return. Can be either open, closed, or all. Default: open
assigneestringCan be the name of a user. Pass in none for issues with no assigned user, and * for issues assigned to any user.
creatorstringThe user that created the issue.
mentionedstringA user that's mentioned in the issue.
labelsstringA list of comma separated label names. Example: bug,ui,@high
sortstringstring What to sort results by. Can be either created, updated, comments. Default: created
directionstringThe direction of the sort. Can be either asc or desc. Default: desc
sincestringOnly issues updated at or after this time are returned. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago