Skip to content

Instantly share code, notes, and snippets.

@matsub
Created December 8, 2018 12:41
Show Gist options
  • Save matsub/276b6012dc0cacd5aaa9ada3c0baa4e3 to your computer and use it in GitHub Desktop.
Save matsub/276b6012dc0cacd5aaa9ada3c0baa4e3 to your computer and use it in GitHub Desktop.
GitHub Apps
FROM python:3.6-alpine3.7
LABEL "com.github.actions.name"="Assign Reviewer"
LABEL "com.github.actions.description"="Assign a PR reviewer when it does not have enough reviewers"
LABEL "com.github.actions.icon"="edit"
LABEL "com.github.actions.color"="blue"
LABEL "repository"="https://github.com/matsub/try-github-actions"
LABEL "maintainer"="matsub <[email protected]>"
ADD main.py /main.py
CMD ["python", "/main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment