├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── comment-body-addition.md ├── comment-body.md ├── comment-template.md ├── dependabot.yml └── workflows │ ├── automerge-dependabot.yml │ ├── ci.yml │ ├── slash-command-dispatch.yml │ ├── test-command.yml │ ├── test-v3.yml │ └── update-major-version.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── jest.config.js ├── package.json ├── src ├── create-or-update-comment.ts ├── main.ts └── utils.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: peter-evans -------------------------------------------------------------------------------- /.github/comment-body-addition.md: -------------------------------------------------------------------------------- 1 | This is still the second line. -------------------------------------------------------------------------------- /.github/comment-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/comment-body.md -------------------------------------------------------------------------------- /.github/comment-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/comment-template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/automerge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/slash-command-dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/slash-command-dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/test-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/test-command.yml -------------------------------------------------------------------------------- /.github/workflows/test-v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/test-v3.yml -------------------------------------------------------------------------------- /.github/workflows/update-major-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.github/workflows/update-major-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/package.json -------------------------------------------------------------------------------- /src/create-or-update-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/src/create-or-update-comment.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/create-or-update-comment/HEAD/tsconfig.json --------------------------------------------------------------------------------