├── .github └── workflows │ ├── ci.yml │ └── smee.yml ├── .gitignore ├── README.md ├── action.yml ├── index.js ├── package.json ├── post-to-smee.js └── tests ├── __snapshots__ └── index.test.js.snap ├── fixtures └── event.json ├── index.test.js └── setup.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/smee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/.github/workflows/smee.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/action.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/package.json -------------------------------------------------------------------------------- /post-to-smee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/post-to-smee.js -------------------------------------------------------------------------------- /tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /tests/fixtures/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/tests/fixtures/event.json -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonEtco/smee-action/HEAD/tests/setup.js --------------------------------------------------------------------------------