AtlasOfLivingAustralia / travis-build-configuration

travis-ci.org build configuration files shared/re-used among ALA projects
5 stars 8 forks source link

generate atlasoflivingaustralia.github.io authors and contributors dynamically #22

Open mbohun opened 6 years ago

mbohun commented 6 years ago

The https://atlasoflivingaustralia.github.io/ has at the bottom a authors and contributors section that is currently hard-coded/populated with 8 github usernames; we could try to re-generate this list / populate it dynamically from a GitHub API query result, example:

./githubapi-get.sh \
   $GITHUB_TOKEN \
   /repos/AtlasOfLivingAustralia/travis-build-configuration/collaborators \
   | jq '[ .[] | .login ] | sort'
[
  "CorinnaPaeper",
  "M-Nicholls",
  "NatRB",
  "PeggyNewman",
  "Rita-C",
  "RobinaSanderson",
  "StephanievG",
  "Tasilee",
  "adam-collins",
  "ansell",
  "ben3000",
  "charvolant",
  "chrisala",
  "djtfmartin",
  "hudson-ala",
  "javier-molina",
  "jenkins-ala",
  "kheerand",
  "m-hope",
  "matthewandrews",
  "mbohun",
  "nickdos",
  "patkyn",
  "pbrenton",
  "qifeng-bai",
  "rp-ala",
  "sadeghim",
  "sat01a",
  "sathishala",
  "sbearcsiro",
  "temi",
  "timrobertson100"
]

NOTE: