├── .babelrc ├── .gitignore ├── README.md ├── _config.yml ├── action.json ├── circle.yml ├── dist └── action.js ├── index.js ├── lib └── action.js ├── package.json ├── scripts ├── get_public_url.js ├── preview_action.js └── update_action_config.js ├── vm.yaml └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.DS_Store 3 | creds.data 4 | npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/_config.yml -------------------------------------------------------------------------------- /action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/action.json -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/circle.yml -------------------------------------------------------------------------------- /dist/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/dist/action.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import './lib/action'; -------------------------------------------------------------------------------- /lib/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/lib/action.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/package.json -------------------------------------------------------------------------------- /scripts/get_public_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/scripts/get_public_url.js -------------------------------------------------------------------------------- /scripts/preview_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/scripts/preview_action.js -------------------------------------------------------------------------------- /scripts/update_action_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/scripts/update_action_config.js -------------------------------------------------------------------------------- /vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/vm.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/google-actions-starter/HEAD/yarn.lock --------------------------------------------------------------------------------