├── .bumpversion.cfg ├── .dockerignore ├── .editorconfig ├── .gitchangelog.rc ├── .gitchangelog.tpl ├── .github ├── codeql-config.yml ├── dependabot.yml └── workflows │ ├── code-quality.yml │ ├── pr.yml │ └── push.yml ├── .gitignore ├── AUTHORS.md ├── CLA.md ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── MAINTAINER.md ├── Makefile ├── README.md ├── action.yml ├── branding ├── author-banner.svg └── banner.svg ├── docker-compose.yml ├── entrypoint.py ├── entrypoint.sh ├── requirements-dev.txt ├── requirements.txt └── test.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | virtualenv/ -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.gitchangelog.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.gitchangelog.tpl -------------------------------------------------------------------------------- /.github/codeql-config.yml: -------------------------------------------------------------------------------- 1 | name: CodeQL config 2 | 3 | paths-ignore: 4 | - virtualenv -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/CLA.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/MAINTAINER.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/action.yml -------------------------------------------------------------------------------- /branding/author-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/branding/author-banner.svg -------------------------------------------------------------------------------- /branding/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/branding/banner.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/entrypoint.py -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | atoma==0.0.17 2 | python-facebook-api==0.13.1 -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisAlejandro/fb-random-post-from-feed/HEAD/test.py --------------------------------------------------------------------------------