├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── codeql-analysis.yml │ ├── lint.yml │ ├── package-check.yml │ └── test.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── __tests__ └── main.test.js ├── action.yml ├── badges └── coverage.svg ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── docs ├── assets │ ├── actions-permissions.png │ ├── example.png │ ├── new-github-app-1.png │ ├── new-github-app-2.png │ ├── new-github-app-3.png │ ├── new-github-app-4.png │ └── new-github-app-5.png └── github-app-setup.md ├── package.json ├── script └── release └── src ├── functions ├── check-labels.js └── check-status.js └── main.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @GrantBirki 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/package-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.github/workflows/package-check.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.9.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/__tests__/main.test.js -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/action.yml -------------------------------------------------------------------------------- /badges/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/badges/coverage.svg -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /docs/assets/actions-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/actions-permissions.png -------------------------------------------------------------------------------- /docs/assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/example.png -------------------------------------------------------------------------------- /docs/assets/new-github-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/new-github-app-1.png -------------------------------------------------------------------------------- /docs/assets/new-github-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/new-github-app-2.png -------------------------------------------------------------------------------- /docs/assets/new-github-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/new-github-app-3.png -------------------------------------------------------------------------------- /docs/assets/new-github-app-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/new-github-app-4.png -------------------------------------------------------------------------------- /docs/assets/new-github-app-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/assets/new-github-app-5.png -------------------------------------------------------------------------------- /docs/github-app-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/docs/github-app-setup.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/package.json -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/script/release -------------------------------------------------------------------------------- /src/functions/check-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/src/functions/check-labels.js -------------------------------------------------------------------------------- /src/functions/check-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/src/functions/check-status.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/combine-prs/HEAD/src/main.js --------------------------------------------------------------------------------