├── .gitignore ├── README.md ├── app.json ├── images ├── add-to-version-history.png ├── copy-personal-access-token.png ├── created-webhook-url.png ├── figma-dropdown.png ├── logo.png ├── publish-library.png ├── scheduler-new-job.png ├── updates.jpg └── version-history.png ├── requirements.txt └── update.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/app.json -------------------------------------------------------------------------------- /images/add-to-version-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/add-to-version-history.png -------------------------------------------------------------------------------- /images/copy-personal-access-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/copy-personal-access-token.png -------------------------------------------------------------------------------- /images/created-webhook-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/created-webhook-url.png -------------------------------------------------------------------------------- /images/figma-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/figma-dropdown.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/publish-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/publish-library.png -------------------------------------------------------------------------------- /images/scheduler-new-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/scheduler-new-job.png -------------------------------------------------------------------------------- /images/updates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/updates.jpg -------------------------------------------------------------------------------- /images/version-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/images/version-history.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | maya==0.6.1 2 | requests==2.18.4 3 | python-dotenv==0.12.0 -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansinger/figma-slack-updates/HEAD/update.py --------------------------------------------------------------------------------