bpmn-io / actions

The custom github actions used by the bpmn-io team
Other
0 stars 5 forks source link

feat: make moderators configurable #5

Closed marstamm closed 1 year ago

marstamm commented 1 year ago

Adds the option to make the moderators list configurable. Add a moderators.json to your repo and add the path as input to the action. The JSON content should look like the the return value of src/shared/DEFAULT_MODERATORS.js, e.g.:

[
  { "idx": 0, "fullName": "Foo Bar", "login": "foobar" },
  { "idx": 1, "fullName": "Baz Bq", "login": "bazbq" },
  ...
]

related to https://github.com/camunda/team-hto/pull/11#discussion_r997117506

pinussilvestrus commented 1 year ago

Works: https://github.com/camunda/team-hto/issues/22

🚀