├── .github ├── renovate.json └── workflows │ ├── inception.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── action.yml ├── app.js ├── dist └── index.js ├── index.js ├── package.json └── test └── app.test.js /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/inception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/.github/workflows/inception.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/action.yml -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/app.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/package.json -------------------------------------------------------------------------------- /test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/example-github-action/HEAD/test/app.test.js --------------------------------------------------------------------------------