gitextract_yjz6o31s/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── add-contributors-in-readme.yaml │ ├── assign-to-project.yaml │ ├── codeql-analysis.yml │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── __tests__/ │ ├── main.test.ts │ └── pullRequestLock.test.ts ├── action.yml ├── dist/ │ └── index.js ├── docs/ │ └── contributors.md ├── jest.config.js ├── package.json ├── src/ │ ├── addEmptyCommit.ts │ ├── checkAllowList.ts │ ├── graphql.ts │ ├── interfaces.ts │ ├── main.ts │ ├── octokit.ts │ ├── persistence/ │ │ └── persistence.ts │ ├── pullRerunRunner.ts │ ├── pullrequest/ │ │ ├── pullRequestComment.ts │ │ ├── pullRequestCommentContent.ts │ │ ├── pullRequestLock.ts │ │ └── signatureComment.ts │ ├── setupClaCheck.ts │ └── shared/ │ ├── getInputs.ts │ └── pr-sign-comment.ts └── tsconfig.json