├── .github ├── renovate.json └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── pino-transport-github-actions.js └── test ├── ci.js ├── fixtures ├── app.js └── push.json └── index.test.js /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/package.json -------------------------------------------------------------------------------- /pino-transport-github-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/pino-transport-github-actions.js -------------------------------------------------------------------------------- /test/ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/test/ci.js -------------------------------------------------------------------------------- /test/fixtures/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/test/fixtures/app.js -------------------------------------------------------------------------------- /test/fixtures/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/test/fixtures/push.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/adapter-github-actions/HEAD/test/index.test.js --------------------------------------------------------------------------------