├── NAMESPACE ├── .gitignore ├── setup-r ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ ├── Util.d.ts │ │ ├── opensource │ │ │ └── node-http-ntlm │ │ │ │ └── readme.txt │ │ ├── handlers │ │ │ ├── bearertoken.d.ts │ │ │ ├── personalaccesstoken.d.ts │ │ │ └── basiccreds.d.ts │ │ └── Handlers.js │ ├── tunnel │ │ ├── test │ │ │ └── keys │ │ │ │ ├── ca2-serial │ │ │ │ ├── ca1-cert.srl │ │ │ │ ├── ca2-cert.srl │ │ │ │ ├── ca3-cert.srl │ │ │ │ ├── ca4-cert.srl │ │ │ │ ├── ca2-database.txt │ │ │ │ ├── client.cnf │ │ │ │ ├── client1.cnf │ │ │ │ ├── client2.cnf │ │ │ │ ├── proxy1.cnf │ │ │ │ ├── proxy2.cnf │ │ │ │ ├── server1.cnf │ │ │ │ ├── server2.cnf │ │ │ │ ├── agent2-key.pem │ │ │ │ ├── agent4-key.pem │ │ │ │ ├── ca1.cnf │ │ │ │ ├── ca2.cnf │ │ │ │ ├── ca3.cnf │ │ │ │ ├── ca4.cnf │ │ │ │ ├── agent1-key.pem │ │ │ │ ├── agent3-key.pem │ │ │ │ ├── ca2-crl.pem │ │ │ │ ├── agent1-csr.pem │ │ │ │ ├── agent2-csr.pem │ │ │ │ ├── agent3-csr.pem │ │ │ │ ├── agent4-csr.pem │ │ │ │ ├── agent1.cnf │ │ │ │ ├── agent2.cnf │ │ │ │ ├── agent3.cnf │ │ │ │ └── agent4.cnf │ │ ├── .npmignore │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── linux-os-info │ │ ├── CONTRIBUTING.md │ │ └── CHANGELOG.md │ ├── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ │ ├── rng.js │ │ │ ├── md5.js │ │ │ └── sha1.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── exec.js.map │ │ │ │ └── exec.d.ts │ │ ├── tool-cache │ │ │ ├── scripts │ │ │ │ └── externals │ │ │ │ │ └── 7zdec.exe │ │ │ └── node_modules │ │ │ │ └── @actions │ │ │ │ └── core │ │ │ │ └── lib │ │ │ │ └── command.d.ts │ │ └── core │ │ │ └── lib │ │ │ └── command.d.ts │ └── semver │ │ └── range.bnf ├── jest.config.js └── .github │ ├── r.json │ ├── testthat.json │ └── rcmdcheck.json ├── pr-fetch ├── node_modules │ ├── .bin │ │ ├── semver │ │ └── which │ ├── @octokit │ │ ├── endpoint │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── generated │ │ │ │ │ └── routes.js │ │ │ │ ├── version.js │ │ │ │ ├── index.js │ │ │ │ ├── endpoint-with-defaults.js │ │ │ │ ├── util │ │ │ │ │ ├── omit.js │ │ │ │ │ ├── lowercase-keys.js │ │ │ │ │ ├── extract-url-variable-names.js │ │ │ │ │ └── merge-deep.js │ │ │ │ ├── defaults.js │ │ │ │ └── with-defaults.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── util │ │ │ │ │ ├── merge-deep.d.ts │ │ │ │ │ ├── extract-url-variable-names.d.ts │ │ │ │ │ ├── url-template.d.ts │ │ │ │ │ ├── lowercase-keys.d.ts │ │ │ │ │ ├── omit.d.ts │ │ │ │ │ └── add-query-parameters.d.ts │ │ │ │ ├── defaults.d.ts │ │ │ │ ├── parse.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ └── endpoint-with-defaults.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── version.js │ │ │ │ ├── get-buffer-response.js │ │ │ │ └── index.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── get-buffer-response.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ └── fetch-wrapper.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request-error │ │ │ └── dist-src │ │ │ │ └── types.js │ │ ├── rest │ │ │ ├── lib │ │ │ │ ├── core.js │ │ │ │ ├── register-plugin.js │ │ │ │ └── factory.js │ │ │ ├── node_modules │ │ │ │ └── universal-user-agent │ │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── plugins │ │ │ │ ├── validate │ │ │ │ │ └── index.js │ │ │ │ ├── register-endpoints │ │ │ │ │ └── index.js │ │ │ │ ├── pagination │ │ │ │ │ └── index.js │ │ │ │ ├── authentication │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── with-authorization-prefix.js │ │ │ │ └── rest-api-endpoints │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── graphql │ │ │ ├── lib │ │ │ ├── with-defaults.js │ │ │ └── error.js │ │ │ └── index.js │ ├── isexe │ │ └── .npmignore │ ├── shebang-regex │ │ └── index.js │ ├── universal-user-agent │ │ ├── index.d.ts │ │ ├── cypress.json │ │ ├── browser.js │ │ └── index.js │ ├── atob-lite │ │ ├── .npmignore │ │ ├── atob-browser.js │ │ └── atob-node.js │ ├── btoa-lite │ │ ├── .npmignore │ │ ├── btoa-browser.js │ │ └── btoa-node.js │ ├── pump │ │ └── .travis.yml │ ├── deprecation │ │ ├── dist-types │ │ │ └── index.d.ts │ │ ├── dist-src │ │ │ └── index.js │ │ ├── dist-web │ │ │ └── index.js │ │ └── dist-node │ │ │ └── index.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── exec.js.map │ │ │ │ └── exec.d.ts │ │ ├── github │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── github.d.ts │ │ │ │ ├── github.js.map │ │ │ │ └── context.d.ts │ │ └── core │ │ │ └── lib │ │ │ └── command.d.ts │ ├── octokit-pagination-methods │ │ ├── lib │ │ │ ├── get-last-page.js │ │ │ ├── get-next-page.js │ │ │ ├── get-first-page.js │ │ │ ├── get-previous-page.js │ │ │ ├── deprecate.js │ │ │ ├── has-last-page.js │ │ │ ├── has-next-page.js │ │ │ ├── has-first-page.js │ │ │ ├── has-previous-page.js │ │ │ ├── http-error.js │ │ │ └── get-page-links.js │ │ └── index.js │ ├── path-key │ │ └── index.js │ ├── nice-try │ │ ├── src │ │ │ └── index.js │ │ └── CHANGELOG.md │ ├── p-finally │ │ └── index.js │ ├── strip-eof │ │ ├── index.js │ │ └── readme.md │ ├── before-after-hook │ │ └── lib │ │ │ └── remove.js │ ├── shebang-command │ │ └── index.js │ ├── lodash.get │ │ └── README.md │ ├── lodash.set │ │ └── README.md │ ├── lodash.uniq │ │ └── README.md │ └── semver │ │ └── range.bnf ├── __tests__ │ └── main.test.ts ├── jest.config.js └── action.yml ├── pr-push ├── node_modules │ ├── .bin │ │ ├── semver │ │ └── which │ ├── @octokit │ │ ├── endpoint │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── generated │ │ │ │ │ └── routes.js │ │ │ │ ├── version.js │ │ │ │ ├── index.js │ │ │ │ ├── endpoint-with-defaults.js │ │ │ │ ├── util │ │ │ │ │ ├── omit.js │ │ │ │ │ ├── lowercase-keys.js │ │ │ │ │ ├── extract-url-variable-names.js │ │ │ │ │ └── merge-deep.js │ │ │ │ ├── defaults.js │ │ │ │ └── with-defaults.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── defaults.d.ts │ │ │ │ ├── util │ │ │ │ │ ├── merge-deep.d.ts │ │ │ │ │ ├── extract-url-variable-names.d.ts │ │ │ │ │ ├── url-template.d.ts │ │ │ │ │ ├── lowercase-keys.d.ts │ │ │ │ │ ├── omit.d.ts │ │ │ │ │ └── add-query-parameters.d.ts │ │ │ │ ├── parse.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ └── endpoint-with-defaults.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── version.js │ │ │ │ ├── get-buffer-response.js │ │ │ │ └── index.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── get-buffer-response.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ └── fetch-wrapper.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request-error │ │ │ └── dist-src │ │ │ │ └── types.js │ │ ├── rest │ │ │ ├── lib │ │ │ │ ├── core.js │ │ │ │ ├── register-plugin.js │ │ │ │ └── factory.js │ │ │ ├── node_modules │ │ │ │ └── universal-user-agent │ │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ ├── browser.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── plugins │ │ │ │ ├── validate │ │ │ │ │ └── index.js │ │ │ │ ├── register-endpoints │ │ │ │ │ └── index.js │ │ │ │ ├── pagination │ │ │ │ │ └── index.js │ │ │ │ ├── authentication │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── with-authorization-prefix.js │ │ │ │ └── rest-api-endpoints │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── graphql │ │ │ ├── lib │ │ │ ├── with-defaults.js │ │ │ └── error.js │ │ │ └── index.js │ ├── isexe │ │ └── .npmignore │ ├── shebang-regex │ │ └── index.js │ ├── universal-user-agent │ │ ├── index.d.ts │ │ ├── cypress.json │ │ ├── browser.js │ │ └── index.js │ ├── atob-lite │ │ ├── .npmignore │ │ ├── atob-browser.js │ │ └── atob-node.js │ ├── btoa-lite │ │ ├── .npmignore │ │ ├── btoa-browser.js │ │ └── btoa-node.js │ ├── pump │ │ └── .travis.yml │ ├── deprecation │ │ ├── dist-types │ │ │ └── index.d.ts │ │ ├── dist-src │ │ │ └── index.js │ │ ├── dist-web │ │ │ └── index.js │ │ └── dist-node │ │ │ └── index.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── exec.js.map │ │ │ │ └── exec.d.ts │ │ ├── github │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── github.d.ts │ │ │ │ ├── github.js.map │ │ │ │ └── context.d.ts │ │ └── core │ │ │ └── lib │ │ │ └── command.d.ts │ ├── octokit-pagination-methods │ │ ├── lib │ │ │ ├── get-first-page.js │ │ │ ├── get-last-page.js │ │ │ ├── get-next-page.js │ │ │ ├── get-previous-page.js │ │ │ ├── deprecate.js │ │ │ ├── has-last-page.js │ │ │ ├── has-next-page.js │ │ │ ├── has-first-page.js │ │ │ ├── has-previous-page.js │ │ │ ├── http-error.js │ │ │ └── get-page-links.js │ │ └── index.js │ ├── path-key │ │ └── index.js │ ├── nice-try │ │ ├── src │ │ │ └── index.js │ │ └── CHANGELOG.md │ ├── p-finally │ │ └── index.js │ ├── strip-eof │ │ ├── index.js │ │ └── readme.md │ ├── before-after-hook │ │ └── lib │ │ │ └── remove.js │ ├── shebang-command │ │ └── index.js │ ├── lodash.get │ │ └── README.md │ ├── lodash.set │ │ └── README.md │ ├── lodash.uniq │ │ └── README.md │ └── semver │ │ └── range.bnf ├── __tests__ │ └── main.test.ts ├── jest.config.js └── action.yml ├── setup-pandoc ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ ├── Util.d.ts │ │ ├── opensource │ │ │ └── node-http-ntlm │ │ │ │ └── readme.txt │ │ ├── handlers │ │ │ ├── bearertoken.d.ts │ │ │ ├── personalaccesstoken.d.ts │ │ │ └── basiccreds.d.ts │ │ └── Handlers.js │ ├── tunnel │ │ ├── test │ │ │ └── keys │ │ │ │ ├── ca2-serial │ │ │ │ ├── ca1-cert.srl │ │ │ │ ├── ca2-cert.srl │ │ │ │ ├── ca3-cert.srl │ │ │ │ ├── ca4-cert.srl │ │ │ │ ├── ca2-database.txt │ │ │ │ ├── client.cnf │ │ │ │ ├── client1.cnf │ │ │ │ ├── client2.cnf │ │ │ │ ├── proxy1.cnf │ │ │ │ ├── proxy2.cnf │ │ │ │ ├── server1.cnf │ │ │ │ ├── server2.cnf │ │ │ │ ├── agent2-key.pem │ │ │ │ ├── agent4-key.pem │ │ │ │ ├── ca1.cnf │ │ │ │ ├── ca2.cnf │ │ │ │ ├── ca3.cnf │ │ │ │ ├── ca4.cnf │ │ │ │ ├── agent1-key.pem │ │ │ │ ├── agent3-key.pem │ │ │ │ ├── ca2-crl.pem │ │ │ │ ├── agent1-csr.pem │ │ │ │ ├── agent2-csr.pem │ │ │ │ ├── agent3-csr.pem │ │ │ │ ├── agent4-csr.pem │ │ │ │ ├── agent1.cnf │ │ │ │ ├── agent2.cnf │ │ │ │ ├── agent3.cnf │ │ │ │ └── agent4.cnf │ │ ├── .npmignore │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ │ ├── rng.js │ │ │ └── md5.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── exec.js.map │ │ │ │ └── exec.d.ts │ │ ├── core │ │ │ └── lib │ │ │ │ └── command.d.ts │ │ └── tool-cache │ │ │ └── node_modules │ │ │ └── @actions │ │ │ └── core │ │ │ └── lib │ │ │ └── command.d.ts │ └── semver │ │ └── range.bnf ├── test.html ├── jest.config.js └── action.yml ├── setup-tinytex ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ ├── Util.d.ts │ │ ├── opensource │ │ │ └── node-http-ntlm │ │ │ │ └── readme.txt │ │ ├── handlers │ │ │ ├── bearertoken.d.ts │ │ │ ├── personalaccesstoken.d.ts │ │ │ └── basiccreds.d.ts │ │ └── Handlers.js │ ├── tunnel │ │ ├── test │ │ │ └── keys │ │ │ │ ├── ca2-serial │ │ │ │ ├── ca1-cert.srl │ │ │ │ ├── ca2-cert.srl │ │ │ │ ├── ca3-cert.srl │ │ │ │ ├── ca4-cert.srl │ │ │ │ ├── ca2-database.txt │ │ │ │ ├── client.cnf │ │ │ │ ├── proxy1.cnf │ │ │ │ ├── proxy2.cnf │ │ │ │ ├── server2.cnf │ │ │ │ ├── client1.cnf │ │ │ │ ├── client2.cnf │ │ │ │ ├── server1.cnf │ │ │ │ ├── agent2-key.pem │ │ │ │ ├── agent4-key.pem │ │ │ │ ├── ca1.cnf │ │ │ │ ├── ca2.cnf │ │ │ │ ├── ca3.cnf │ │ │ │ ├── ca4.cnf │ │ │ │ ├── agent1-key.pem │ │ │ │ ├── agent3-key.pem │ │ │ │ ├── ca2-crl.pem │ │ │ │ ├── agent1-csr.pem │ │ │ │ ├── agent1.cnf │ │ │ │ ├── agent2-csr.pem │ │ │ │ ├── agent2.cnf │ │ │ │ ├── agent3-csr.pem │ │ │ │ ├── agent3.cnf │ │ │ │ ├── agent4-csr.pem │ │ │ │ └── agent4.cnf │ │ ├── .npmignore │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ │ └── rng.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ ├── interfaces.js │ │ │ │ ├── exec.js.map │ │ │ │ └── exec.d.ts │ │ └── core │ │ │ └── lib │ │ │ └── command.d.ts │ └── semver │ │ └── range.bnf ├── test.html ├── action.yml └── jest.config.js ├── R └── foo.R ├── tests └── test.R ├── .Rbuildignore ├── run-rchk ├── action.yml └── Dockerfile ├── DESCRIPTION ├── examples ├── docker.yaml └── check-release.yaml └── .github ├── SUPPORT.md └── workflows └── check-release.yaml /NAMESPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /pr-fetch/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver -------------------------------------------------------------------------------- /pr-fetch/node_modules/.bin/which: -------------------------------------------------------------------------------- 1 | ../which/bin/which -------------------------------------------------------------------------------- /pr-push/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver -------------------------------------------------------------------------------- /pr-push/node_modules/.bin/which: -------------------------------------------------------------------------------- 1 | ../which/bin/which -------------------------------------------------------------------------------- /setup-pandoc/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /setup-pandoc/test.html: -------------------------------------------------------------------------------- 1 |

Test

2 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /setup-tinytex/test.html: -------------------------------------------------------------------------------- 1 |

Test

2 | -------------------------------------------------------------------------------- /R/foo.R: -------------------------------------------------------------------------------- 1 | add_one <- function(x) { 2 | x + 1 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-r/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test.R: -------------------------------------------------------------------------------- 1 | stopifnot(testpackage:::add_one(1) == 2) 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request-error/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request-error/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/generated/routes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/generated/routes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | B111C9CEF0257692 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 9BF2D4B2E00EDF16 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca3-cert.srl: -------------------------------------------------------------------------------- 1 | EF7B2CF0FA61DF41 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca4-cert.srl: -------------------------------------------------------------------------------- 1 | B01FE0416A2EDCF5 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | B111C9CEF0257692 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 9BF2D4B2E00EDF16 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca3-cert.srl: -------------------------------------------------------------------------------- 1 | EF7B2CF0FA61DF41 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca4-cert.srl: -------------------------------------------------------------------------------- 1 | B01FE0416A2EDCF5 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | B111C9CEF0257692 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 9BF2D4B2E00EDF16 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca3-cert.srl: -------------------------------------------------------------------------------- 1 | EF7B2CF0FA61DF41 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca4-cert.srl: -------------------------------------------------------------------------------- 1 | B01FE0416A2EDCF5 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!.*/; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!.*/; 3 | -------------------------------------------------------------------------------- /pr-fetch/__tests__/main.test.ts: -------------------------------------------------------------------------------- 1 | import * as path from "path"; 2 | 3 | test("test runs", () => {}); 4 | -------------------------------------------------------------------------------- /pr-push/__tests__/main.test.ts: -------------------------------------------------------------------------------- 1 | import * as path from "path"; 2 | 3 | test("test runs", () => {}); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function getUserAgentNode(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function getUserAgentNode(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/atob-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _atob(str) { 2 | return atob(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/btoa-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _btoa(str) { 2 | return btoa(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const request: import("./types").request; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/atob-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _atob(str) { 2 | return atob(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/btoa-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _btoa(str) { 2 | return btoa(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationFolder": "test", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const endpoint: import("./types").endpoint; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const request: import("./types").request; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationFolder": "test", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const endpoint: import("./types").endpoint; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/core.js: -------------------------------------------------------------------------------- 1 | const factory = require("./factory"); 2 | 3 | module.exports = factory(); 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/core.js: -------------------------------------------------------------------------------- 1 | const factory = require("./factory"); 2 | 3 | module.exports = factory(); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | name: "Deprecation"; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | name: "Deprecation"; 3 | } 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/btoa-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function btoa(str) { 2 | return new Buffer(str).toString('base64') 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/btoa-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function btoa(str) { 2 | return new Buffer(str).toString('base64') 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts: -------------------------------------------------------------------------------- 1 | export declare function mergeDeep(defaults: any, options: any): object; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults } from "./types"; 2 | export declare const DEFAULTS: Defaults; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts: -------------------------------------------------------------------------------- 1 | export declare function mergeDeep(defaults: any, options: any): object; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults } from "./types"; 2 | export declare const DEFAULTS: Defaults; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/atob-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function atob(str) { 2 | return Buffer.from(str, 'base64').toString('binary') 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/atob-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function atob(str) { 2 | return Buffer.from(str, 'base64').toString('binary') 3 | } 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/linux-os-info/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are always welcome, no matter how large or small. 4 | 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^pr-fetch$ 2 | ^pr-push$ 3 | ^run-rchk$ 4 | ^setup-r$ 5 | ^setup-pandoc$ 6 | ^setup-tinytex$ 7 | ^examples$ 8 | ^LICENSE$ 9 | ^.github$ 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts: -------------------------------------------------------------------------------- 1 | export declare function extractUrlVariableNames(url: string): string[]; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts: -------------------------------------------------------------------------------- 1 | export declare function extractUrlVariableNames(url: string): string[]; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/get-buffer-response.js: -------------------------------------------------------------------------------- 1 | export default function getBufferResponse(response) { 2 | return response.arrayBuffer(); 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/get-buffer-response.js: -------------------------------------------------------------------------------- 1 | export default function getBufferResponse(response) { 2 | return response.arrayBuffer(); 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":";AAAA,uDAAuD"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts: -------------------------------------------------------------------------------- 1 | export declare function parseUrl(template: string): { 2 | expand: (context: object) => string; 3 | }; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":";AAAA,uDAAuD"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts: -------------------------------------------------------------------------------- 1 | export declare function parseUrl(template: string): { 2 | expand: (context: object) => string; 3 | }; 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/parse.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, RequestOptions } from "./types"; 2 | export declare function parse(options: Defaults): RequestOptions; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/parse.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, RequestOptions } from "./types"; 2 | export declare function parse(options: Defaults): RequestOptions; 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjskay/actions/master/setup-r/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts: -------------------------------------------------------------------------------- 1 | export declare function lowercaseKeys(object?: { 2 | [key: string]: any; 3 | }): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts: -------------------------------------------------------------------------------- 1 | export declare function omit(object: { 2 | [key: string]: any; 3 | }, keysToOmit: string[]): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts: -------------------------------------------------------------------------------- 1 | export declare function lowercaseKeys(object?: { 2 | [key: string]: any; 3 | }): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts: -------------------------------------------------------------------------------- 1 | export declare function omit(object: { 2 | [key: string]: any; 3 | }, keysToOmit: string[]): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /setup-tinytex/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Setup TinyTeX' 2 | description: 'Setup TinyTeX and add it to your PATH' 3 | author: 'Jim Hester' 4 | runs: 5 | using: 'node12' 6 | main: 'lib/setup-tinytex.js' 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/get-buffer-response.d.ts: -------------------------------------------------------------------------------- 1 | import { Response } from "node-fetch"; 2 | export default function getBufferResponse(response: Response): Promise; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentBrowser 2 | 3 | function getUserAgentBrowser () { 4 | /* global navigator */ 5 | return navigator.userAgent 6 | } 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/get-buffer-response.d.ts: -------------------------------------------------------------------------------- 1 | import { Response } from "node-fetch"; 2 | export default function getBufferResponse(response: Response): Promise; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentBrowser 2 | 3 | function getUserAgentBrowser () { 4 | /* global navigator */ 5 | return navigator.userAgent 6 | } 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { withDefaults } from "./with-defaults"; 2 | import { DEFAULTS } from "./defaults"; 3 | export const endpoint = withDefaults(null, DEFAULTS); 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { withDefaults } from "./with-defaults"; 2 | import { DEFAULTS } from "./defaults"; 3 | export const endpoint = withDefaults(null, DEFAULTS); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/linux-os-info/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | ## [Unreleased] 5 | 6 | ## [1.0.0] - 2018-02-10 7 | * First public version -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { request, endpoint, Parameters } from "./types"; 2 | export default function withDefaults(oldEndpoint: endpoint, newDefaults: Parameters): request; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { request, endpoint, Parameters } from "./types"; 2 | export default function withDefaults(oldEndpoint: endpoint, newDefaults: Parameters): request; 3 | -------------------------------------------------------------------------------- /run-rchk/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Run rchk tests' 2 | description: 'Run rchk tests' 3 | inputs: 4 | apt: 5 | default: '' 6 | package: 7 | default: '' 8 | runs: 9 | using: 'docker' 10 | image: 'Dockerfile' 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts: -------------------------------------------------------------------------------- 1 | export declare function addQueryParameters(url: string, parameters: { 2 | [x: string]: string | undefined; 3 | q?: string; 4 | }): string; 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts: -------------------------------------------------------------------------------- 1 | export declare function addQueryParameters(url: string, parameters: { 2 | [x: string]: string | undefined; 3 | q?: string; 4 | }): string; 5 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* eslint-disable @typescript-eslint/no-explicit-any */ 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, endpoint, Parameters } from "./types"; 2 | export declare function withDefaults(oldDefaults: Defaults | null, newDefaults: Parameters): endpoint; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* eslint-disable @typescript-eslint/no-explicit-any */ 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, endpoint, Parameters } from "./types"; 2 | export declare function withDefaults(oldDefaults: Defaults | null, newDefaults: Parameters): endpoint; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Route, Parameters } from "./types"; 2 | export declare function merge(defaults: Defaults | null, route?: Route | Parameters, options?: Parameters): Defaults; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Route, Parameters } from "./types"; 2 | export declare function merge(defaults: Defaults | null, route?: Route | Parameters, options?: Parameters): Defaults; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/validate/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitValidate; 2 | 3 | const validate = require("./validate"); 4 | 5 | function octokitValidate(octokit) { 6 | octokit.hook.before("request", validate.bind(null, octokit)); 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getLastPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getLastPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'last', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getNextPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getNextPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'next', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/validate/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitValidate; 2 | 3 | const validate = require("./validate"); 4 | 5 | function octokitValidate(octokit) { 6 | octokit.hook.before("request", validate.bind(null, octokit)); 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getFirstPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getFirstPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'first', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getLastPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getLastPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'last', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getNextPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getNextPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'next', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getFirstPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getFirstPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'first', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js: -------------------------------------------------------------------------------- 1 | import { merge } from "./merge"; 2 | import { parse } from "./parse"; 3 | export function endpointWithDefaults(defaults, route, options) { 4 | return parse(merge(defaults, route, options)); 5 | } 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getPreviousPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getPreviousPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'prev', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js: -------------------------------------------------------------------------------- 1 | import { merge } from "./merge"; 2 | import { parse } from "./parse"; 3 | export function endpointWithDefaults(defaults, route, options) { 4 | return parse(merge(defaults, route, options)); 5 | } 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getPreviousPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getPreviousPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'prev', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Endpoint, RequestOptions, Route, Parameters } from "./types"; 2 | export declare function endpointWithDefaults(defaults: Defaults, route: Route | Endpoint, options?: Parameters): RequestOptions; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Endpoint, RequestOptions, Route, Parameters } from "./types"; 2 | export declare function endpointWithDefaults(defaults: Defaults, route: Route | Endpoint, options?: Parameters): RequestOptions; 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /pr-push/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /setup-r/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /pr-fetch/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-pandoc/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /pr-fetch/action.yml: -------------------------------------------------------------------------------- 1 | name: 'pr-fetch' 2 | description: 'Fetch changes from a Pull Request branch' 3 | author: 'Jim Hester' 4 | inputs: 5 | repo-token: 6 | description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}' 7 | runs: 8 | using: 'node12' 9 | main: 'lib/main.js' 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/register-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRegisterEndpoints; 2 | 3 | const registerEndpoints = require("./register-endpoints"); 4 | 5 | function octokitRegisterEndpoints(octokit) { 6 | octokit.registerEndpoints = registerEndpoints.bind(null, octokit); 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /setup-tinytex/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/omit.js: -------------------------------------------------------------------------------- 1 | export function omit(object, keysToOmit) { 2 | return Object.keys(object) 3 | .filter(option => !keysToOmit.includes(option)) 4 | .reduce((obj, key) => { 5 | obj[key] = object[key]; 6 | return obj; 7 | }, {}); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/register-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRegisterEndpoints; 2 | 3 | const registerEndpoints = require("./register-endpoints"); 4 | 5 | function octokitRegisterEndpoints(octokit) { 6 | octokit.registerEndpoints = registerEndpoints.bind(null, octokit); 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/omit.js: -------------------------------------------------------------------------------- 1 | export function omit(object, keysToOmit) { 2 | return Object.keys(object) 3 | .filter(option => !keysToOmit.includes(option)) 4 | .reduce((obj, key) => { 5 | obj[key] = object[key]; 6 | return obj; 7 | }, {}); 8 | } 9 | -------------------------------------------------------------------------------- /setup-pandoc/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Setup pandoc' 2 | description: 'Setup pandoc and add it to your PATH' 3 | author: 'Jim Hester' 4 | inputs: 5 | pandoc-version: 6 | description: 'Exact version of pandoc to use' 7 | default: '2.7.3' 8 | runs: 9 | using: 'node12' 10 | main: 'lib/setup-pandoc.js' 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/register-plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = registerPlugin; 2 | 3 | const factory = require("./factory"); 4 | 5 | function registerPlugin(plugins, pluginFunction) { 6 | return factory( 7 | plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction) 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/register-plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = registerPlugin; 2 | 3 | const factory = require("./factory"); 4 | 5 | function registerPlugin(plugins, pluginFunction) { 6 | return factory( 7 | plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction) 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | - 0.0.4 (2016/01/23) 4 | - supported Node v0.12 or later. 5 | 6 | - 0.0.3 (2014/01/20) 7 | - fixed package.json 8 | 9 | - 0.0.1 (2012/02/18) 10 | - supported Node v0.6.x (0.6.11 or later). 11 | 12 | - 0.0.0 (2012/02/11) 13 | - first release. 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js: -------------------------------------------------------------------------------- 1 | export function lowercaseKeys(object) { 2 | if (!object) { 3 | return {}; 4 | } 5 | return Object.keys(object).reduce((newObj, key) => { 6 | newObj[key.toLowerCase()] = object[key]; 7 | return newObj; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | - 0.0.4 (2016/01/23) 4 | - supported Node v0.12 or later. 5 | 6 | - 0.0.3 (2014/01/20) 7 | - fixed package.json 8 | 9 | - 0.0.1 (2012/02/18) 10 | - supported Node v0.6.x (0.6.11 or later). 11 | 12 | - 0.0.0 (2012/02/11) 13 | - first release. 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | - 0.0.4 (2016/01/23) 4 | - supported Node v0.12 or later. 5 | 6 | - 0.0.3 (2014/01/20) 7 | - fixed package.json 8 | 9 | - 0.0.1 (2012/02/18) 10 | - supported Node v0.6.x (0.6.11 or later). 11 | 12 | - 0.0.0 (2012/02/11) 13 | - first release. 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js: -------------------------------------------------------------------------------- 1 | export function lowercaseKeys(object) { 2 | if (!object) { 3 | return {}; 4 | } 5 | return Object.keys(object).reduce((newObj, key) => { 6 | newObj[key.toLowerCase()] = object[key]; 7 | return newObj; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/deprecate.js: -------------------------------------------------------------------------------- 1 | module.exports = deprecate 2 | 3 | const loggedMessages = {} 4 | 5 | function deprecate (message) { 6 | if (loggedMessages[message]) { 7 | return 8 | } 9 | 10 | console.warn(`DEPRECATED (@octokit/rest): ${message}`) 11 | loggedMessages[message] = 1 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/deprecate.js: -------------------------------------------------------------------------------- 1 | module.exports = deprecate 2 | 3 | const loggedMessages = {} 4 | 5 | function deprecate (message) { 6 | if (loggedMessages[message]) { 7 | return 8 | } 9 | 10 | console.warn(`DEPRECATED (@octokit/rest): ${message}`) 11 | loggedMessages[message] = 1 12 | } 13 | -------------------------------------------------------------------------------- /run-rchk/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM rhub/ubuntu-rchk 2 | 3 | USER root 4 | RUN apt-get update 5 | RUN apt-get install sudo -y 6 | 7 | RUN echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/user && \ 8 | chmod 0440 /etc/sudoers.d/user 9 | 10 | USER docker 11 | 12 | COPY entrypoint.sh /entrypoint.sh 13 | 14 | ENTRYPOINT ["/entrypoint.sh"] 15 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/pagination/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginatePlugin; 2 | 3 | const iterator = require("./iterator"); 4 | const paginate = require("./paginate"); 5 | 6 | function paginatePlugin(octokit) { 7 | octokit.paginate = paginate.bind(null, octokit); 8 | octokit.paginate.iterator = iterator.bind(null, octokit); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/factory.js: -------------------------------------------------------------------------------- 1 | module.exports = factory; 2 | 3 | const Octokit = require("./constructor"); 4 | const registerPlugin = require("./register-plugin"); 5 | 6 | function factory(plugins) { 7 | const Api = Octokit.bind(null, plugins || []); 8 | Api.plugin = registerPlugin.bind(null, plugins || []); 9 | return Api; 10 | } 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/pagination/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginatePlugin; 2 | 3 | const iterator = require("./iterator"); 4 | const paginate = require("./paginate"); 5 | 6 | function paginatePlugin(octokit) { 7 | octokit.paginate = paginate.bind(null, octokit); 8 | octokit.paginate.iterator = iterator.bind(null, octokit); 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/factory.js: -------------------------------------------------------------------------------- 1 | module.exports = factory; 2 | 3 | const Octokit = require("./constructor"); 4 | const registerPlugin = require("./register-plugin"); 5 | 6 | function factory(plugins) { 7 | const Api = Octokit.bind(null, plugins || []); 8 | Api.plugin = registerPlugin.bind(null, plugins || []); 9 | return Api; 10 | } 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/fetch-wrapper.d.ts: -------------------------------------------------------------------------------- 1 | import { endpoint } from "./types"; 2 | export default function fetchWrapper(requestOptions: ReturnType & { 3 | redirect?: string; 4 | }): Promise<{ 5 | status: number; 6 | url: string; 7 | headers: { 8 | [header: string]: string; 9 | }; 10 | data: any; 11 | }>; 12 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/path-key/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = opts => { 3 | opts = opts || {}; 4 | 5 | const env = opts.env || process.env; 6 | const platform = opts.platform || process.platform; 7 | 8 | if (platform !== 'win32') { 9 | return 'PATH'; 10 | } 11 | 12 | return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path'; 13 | }; 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/fetch-wrapper.d.ts: -------------------------------------------------------------------------------- 1 | import { endpoint } from "./types"; 2 | export default function fetchWrapper(requestOptions: ReturnType & { 3 | redirect?: string; 4 | }): Promise<{ 5 | status: number; 6 | url: string; 7 | headers: { 8 | [header: string]: string; 9 | }; 10 | data: any; 11 | }>; 12 | -------------------------------------------------------------------------------- /pr-push/node_modules/path-key/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = opts => { 3 | opts = opts || {}; 4 | 5 | const env = opts.env || process.env; 6 | const platform = opts.platform || process.platform; 7 | 8 | if (platform !== 'win32') { 9 | return 'PATH'; 10 | } 11 | 12 | return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path'; 13 | }; 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/nice-try/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Tries to execute a function and discards any error that occurs. 5 | * @param {Function} fn - Function that might or might not throw an error. 6 | * @returns {?*} Return-value of the function when no error occurred. 7 | */ 8 | module.exports = function(fn) { 9 | 10 | try { return fn() } catch (e) {} 11 | 12 | } -------------------------------------------------------------------------------- /pr-push/node_modules/nice-try/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Tries to execute a function and discards any error that occurs. 5 | * @param {Function} fn - Function that might or might not throw an error. 6 | * @returns {?*} Return-value of the function when no error occurred. 7 | */ 8 | module.exports = function(fn) { 9 | 10 | try { return fn() } catch (e) {} 11 | 12 | } -------------------------------------------------------------------------------- /pr-fetch/node_modules/p-finally/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = (promise, onFinally) => { 3 | onFinally = onFinally || (() => {}); 4 | 5 | return promise.then( 6 | val => new Promise(resolve => { 7 | resolve(onFinally()); 8 | }).then(() => val), 9 | err => new Promise(resolve => { 10 | resolve(onFinally()); 11 | }).then(() => { 12 | throw err; 13 | }) 14 | ); 15 | }; 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/p-finally/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = (promise, onFinally) => { 3 | onFinally = onFinally || (() => {}); 4 | 5 | return promise.then( 6 | val => new Promise(resolve => { 7 | resolve(onFinally()); 8 | }).then(() => val), 9 | err => new Promise(resolve => { 10 | resolve(onFinally()); 11 | }).then(() => { 12 | throw err; 13 | }) 14 | ); 15 | }; 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Util.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * creates an url from a request url and optional base url (http://server:8080) 3 | * @param {string} resource - a fully qualified url or relative path 4 | * @param {string} baseUrl - an optional baseUrl (http://server:8080) 5 | * @return {string} - resultant url 6 | */ 7 | export declare function getUrl(resource: string, baseUrl?: string): string; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- 1 | // This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. 2 | // 3 | // As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. 4 | // 5 | // It is used as a part of the NTLM support provided by the vso-node-api library. 6 | // 7 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Util.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * creates an url from a request url and optional base url (http://server:8080) 3 | * @param {string} resource - a fully qualified url or relative path 4 | * @param {string} baseUrl - an optional baseUrl (http://server:8080) 5 | * @return {string} - resultant url 6 | */ 7 | export declare function getUrl(resource: string, baseUrl?: string): string; 8 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- 1 | // This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. 2 | // 3 | // As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. 4 | // 5 | // It is used as a part of the NTLM support provided by the vso-node-api library. 6 | // 7 | -------------------------------------------------------------------------------- /setup-r/.github/r.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "r", 5 | "pattern": [ 6 | { 7 | "regexp": "^(Error|Warning)(?: in (.*) )?: (.*)$", 8 | "severity": 1, 9 | "code": 2, 10 | "message": 3 11 | } 12 | ] 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Util.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * creates an url from a request url and optional base url (http://server:8080) 3 | * @param {string} resource - a fully qualified url or relative path 4 | * @param {string} baseUrl - an optional baseUrl (http://server:8080) 5 | * @return {string} - resultant url 6 | */ 7 | export declare function getUrl(resource: string, baseUrl?: string): string; 8 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- 1 | // This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. 2 | // 3 | // As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. 4 | // 5 | // It is used as a part of the NTLM support provided by the vso-node-api library. 6 | // 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { endpoint } from "@octokit/endpoint"; 2 | import { getUserAgent } from "universal-user-agent"; 3 | import { VERSION } from "./version"; 4 | import withDefaults from "./with-defaults"; 5 | export const request = withDefaults(endpoint, { 6 | headers: { 7 | "user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}` 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { endpoint } from "@octokit/endpoint"; 2 | import { getUserAgent } from "universal-user-agent"; 3 | import { VERSION } from "./version"; 4 | import withDefaults from "./with-defaults"; 5 | export const request = withDefaults(endpoint, { 6 | headers: { 7 | "user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}` 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /pr-fetch/node_modules/strip-eof/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (x) { 3 | var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt(); 4 | var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt(); 5 | 6 | if (x[x.length - 1] === lf) { 7 | x = x.slice(0, x.length - 1); 8 | } 9 | 10 | if (x[x.length - 1] === cr) { 11 | x = x.slice(0, x.length - 1); 12 | } 13 | 14 | return x; 15 | }; 16 | -------------------------------------------------------------------------------- /pr-push/action.yml: -------------------------------------------------------------------------------- 1 | name: 'pr-push' 2 | description: 'Push changes back to a Pull Request branch' 3 | author: 'Jim Hester' 4 | inputs: 5 | repo-token: 6 | description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}' 7 | args: 8 | description: 'String of additional command line args to `git push`' 9 | default: '-q' 10 | runs: 11 | using: 'node12' 12 | main: 'lib/main.js' 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/strip-eof/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (x) { 3 | var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt(); 4 | var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt(); 5 | 6 | if (x[x.length - 1] === lf) { 7 | x = x.slice(0, x.length - 1); 8 | } 9 | 10 | if (x[x.length - 1] === cr) { 11 | x = x.slice(0, x.length - 1); 12 | } 13 | 14 | return x; 15 | }; 16 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasLastPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasLastPage (link) { 7 | deprecate(`octokit.hasLastPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).last 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasNextPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasNextPage (link) { 7 | deprecate(`octokit.hasNextPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).next 9 | } 10 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: testpackage 2 | Title: A Simple Test Description File to Test Packages 3 | Version: 1.0.0 4 | Authors@R: 5 | c(person(given = "Jim", 6 | family = "Hester", 7 | role = c("aut", "cre"), 8 | email = "james.hester@rstudio.com")) 9 | Description: This is a simple package used to test the workflow files. 10 | Imports: xml2, curl 11 | Suggests: covr 12 | License: GPL (>= 2) 13 | -------------------------------------------------------------------------------- /examples/docker.yaml: -------------------------------------------------------------------------------- 1 | on: [push] 2 | jobs: 3 | job1: 4 | runs-on: ubuntu-latest 5 | container: rocker/verse 6 | steps: 7 | - uses: actions/checkout@v1 8 | - run: Rscript fit_model.R 9 | - run: Rscript -e 'rmarkdown::render("report.Rmd")' 10 | - name: Upload results 11 | uses: actions/upload-artifact@master 12 | with: 13 | name: results 14 | path: report.html 15 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasLastPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasLastPage (link) { 7 | deprecate(`octokit.hasLastPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).last 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasNextPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasNextPage (link) { 7 | deprecate(`octokit.hasNextPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).next 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasFirstPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasFirstPage (link) { 7 | deprecate(`octokit.hasFirstPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).first 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasFirstPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasFirstPage (link) { 7 | deprecate(`octokit.hasFirstPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).first 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/before-after-hook/lib/remove.js: -------------------------------------------------------------------------------- 1 | module.exports = removeHook 2 | 3 | function removeHook (state, name, method) { 4 | if (!state.registry[name]) { 5 | return 6 | } 7 | 8 | var index = state.registry[name] 9 | .map(function (registered) { return registered.orig }) 10 | .indexOf(method) 11 | 12 | if (index === -1) { 13 | return 14 | } 15 | 16 | state.registry[name].splice(index, 1) 17 | } 18 | -------------------------------------------------------------------------------- /pr-push/node_modules/before-after-hook/lib/remove.js: -------------------------------------------------------------------------------- 1 | module.exports = removeHook 2 | 3 | function removeHook (state, name, method) { 4 | if (!state.registry[name]) { 5 | return 6 | } 7 | 8 | var index = state.registry[name] 9 | .map(function (registered) { return registered.orig }) 10 | .indexOf(method) 11 | 12 | if (index === -1) { 13 | return 14 | } 15 | 16 | state.registry[name].splice(index, 1) 17 | } 18 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-web/index.js: -------------------------------------------------------------------------------- 1 | class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } 15 | 16 | export { Deprecation }; 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/graphql/lib/with-defaults.js: -------------------------------------------------------------------------------- 1 | module.exports = withDefaults 2 | 3 | const graphql = require('./graphql') 4 | 5 | function withDefaults (request, newDefaults) { 6 | const newRequest = request.defaults(newDefaults) 7 | const newApi = function (query, options) { 8 | return graphql(newRequest, query, options) 9 | } 10 | 11 | newApi.defaults = withDefaults.bind(null, newRequest) 12 | return newApi 13 | } 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-web/index.js: -------------------------------------------------------------------------------- 1 | class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } 15 | 16 | export { Deprecation }; 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasPreviousPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasPreviousPage (link) { 7 | deprecate(`octokit.hasPreviousPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).prev 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/graphql/lib/with-defaults.js: -------------------------------------------------------------------------------- 1 | module.exports = withDefaults 2 | 3 | const graphql = require('./graphql') 4 | 5 | function withDefaults (request, newDefaults) { 6 | const newRequest = request.defaults(newDefaults) 7 | const newApi = function (query, options) { 8 | return graphql(newRequest, query, options) 9 | } 10 | 11 | newApi.defaults = withDefaults.bind(null, newRequest) 12 | return newApi 13 | } 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasPreviousPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasPreviousPage (link) { 7 | deprecate(`octokit.hasPreviousPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).prev 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/index.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentNode 2 | 3 | const osName = require('os-name') 4 | 5 | function getUserAgentNode () { 6 | try { 7 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})` 8 | } catch (error) { 9 | if (/wmic os get Caption/.test(error.message)) { 10 | return 'Windows ' 11 | } 12 | 13 | throw error 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/index.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentNode 2 | 3 | const osName = require('os-name') 4 | 5 | function getUserAgentNode () { 6 | try { 7 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})` 8 | } catch (error) { 9 | if (/wmic os get Caption/.test(error.message)) { 10 | return 'Windows ' 11 | } 12 | 13 | throw error 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /setup-r/.github/testthat.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "testthat", 5 | "pattern": [ 6 | { 7 | "regexp": "^(.*):(\\d+): (\\w+): (\\w+)$", 8 | "file": 1, 9 | "line": 2, 10 | "severity": 3, 11 | "message": 4 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/github.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQlQueryResponse, Variables } from '@octokit/graphql'; 2 | import Octokit from '@octokit/rest'; 3 | import * as Context from './context'; 4 | export declare const context: Context.Context; 5 | export declare class GitHub extends Octokit { 6 | graphql: (query: string, variables?: Variables) => Promise; 7 | constructor(token: string, opts?: Omit); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/github.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQlQueryResponse, Variables } from '@octokit/graphql'; 2 | import Octokit from '@octokit/rest'; 3 | import * as Context from './context'; 4 | export declare const context: Context.Context; 5 | export declare class GitHub extends Octokit { 6 | graphql: (query: string, variables?: Variables) => Promise; 7 | constructor(token: string, opts?: Omit); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/shebang-command/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var shebangRegex = require('shebang-regex'); 3 | 4 | module.exports = function (str) { 5 | var match = str.match(shebangRegex); 6 | 7 | if (!match) { 8 | return null; 9 | } 10 | 11 | var arr = match[0].replace(/#! ?/, '').split(' '); 12 | var bin = arr[0].split('/').pop(); 13 | var arg = arr[1]; 14 | 15 | return (bin === 'env' ? 16 | arg : 17 | bin + (arg ? ' ' + arg : '') 18 | ); 19 | }; 20 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/node.js: -------------------------------------------------------------------------------- 1 | import osName from "os-name"; 2 | export function getUserAgent() { 3 | try { 4 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`; 5 | } 6 | catch (error) { 7 | if (/wmic os get Caption/.test(error.message)) { 8 | return "Windows "; 9 | } 10 | throw error; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/shebang-command/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var shebangRegex = require('shebang-regex'); 3 | 4 | module.exports = function (str) { 5 | var match = str.match(shebangRegex); 6 | 7 | if (!match) { 8 | return null; 9 | } 10 | 11 | var arr = match[0].replace(/#! ?/, '').split(' '); 12 | var bin = arr[0].split('/').pop(); 13 | var arg = arr[1]; 14 | 15 | return (bin === 'env' ? 16 | arg : 17 | bin + (arg ? ' ' + arg : '') 18 | ); 19 | }; 20 | -------------------------------------------------------------------------------- /setup-r/.github/rcmdcheck.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "rcmdcheck", 5 | "pattern": [ 6 | { 7 | "regexp": "^(.*) [.][.][.] (ERROR|WARNING)$", 8 | "severity": 2 9 | }, 10 | { 11 | "regexp": "^\\s*(.*)$", 12 | "message": 1 13 | } 14 | ] 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js: -------------------------------------------------------------------------------- 1 | const urlVariableRegex = /\{[^}]+\}/g; 2 | function removeNonChars(variableName) { 3 | return variableName.replace(/^\W+|\W+$/g, "").split(/,/); 4 | } 5 | export function extractUrlVariableNames(url) { 6 | const matches = url.match(urlVariableRegex); 7 | if (!matches) { 8 | return []; 9 | } 10 | return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []); 11 | } 12 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js: -------------------------------------------------------------------------------- 1 | const urlVariableRegex = /\{[^}]+\}/g; 2 | function removeNonChars(variableName) { 3 | return variableName.replace(/^\W+|\W+$/g, "").split(/,/); 4 | } 5 | export function extractUrlVariableNames(url) { 6 | const matches = url.match(urlVariableRegex); 7 | if (!matches) { 8 | return []; 9 | } 10 | return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []); 11 | } 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/handlers/bearertoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BearerCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/handlers/bearertoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BearerCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/handlers/bearertoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BearerCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/graphql/index.js: -------------------------------------------------------------------------------- 1 | const { request } = require('@octokit/request') 2 | const getUserAgent = require('universal-user-agent') 3 | 4 | const version = require('./package.json').version 5 | const userAgent = `octokit-graphql.js/${version} ${getUserAgent()}` 6 | 7 | const withDefaults = require('./lib/with-defaults') 8 | 9 | module.exports = withDefaults(request, { 10 | method: 'POST', 11 | url: '/graphql', 12 | headers: { 13 | 'user-agent': userAgent 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/http-error.js: -------------------------------------------------------------------------------- 1 | module.exports = class HttpError extends Error { 2 | constructor (message, code, headers) { 3 | super(message) 4 | 5 | // Maintains proper stack trace (only available on V8) 6 | /* istanbul ignore next */ 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor) 9 | } 10 | 11 | this.name = 'HttpError' 12 | this.code = code 13 | this.headers = headers 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/graphql/index.js: -------------------------------------------------------------------------------- 1 | const { request } = require('@octokit/request') 2 | const getUserAgent = require('universal-user-agent') 3 | 4 | const version = require('./package.json').version 5 | const userAgent = `octokit-graphql.js/${version} ${getUserAgent()}` 6 | 7 | const withDefaults = require('./lib/with-defaults') 8 | 9 | module.exports = withDefaults(request, { 10 | method: 'POST', 11 | url: '/graphql', 12 | headers: { 13 | 'user-agent': userAgent 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/http-error.js: -------------------------------------------------------------------------------- 1 | module.exports = class HttpError extends Error { 2 | constructor (message, code, headers) { 3 | super(message) 4 | 5 | // Maintains proper stack trace (only available on V8) 6 | /* istanbul ignore next */ 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor) 9 | } 10 | 11 | this.name = 'HttpError' 12 | this.code = code 13 | this.headers = headers 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/authentication/validate.js: -------------------------------------------------------------------------------- 1 | module.exports = validateAuth; 2 | 3 | function validateAuth(auth) { 4 | if (typeof auth === "string") { 5 | return; 6 | } 7 | 8 | if (typeof auth === "function") { 9 | return; 10 | } 11 | 12 | if (auth.username && auth.password) { 13 | return; 14 | } 15 | 16 | if (auth.clientId && auth.clientSecret) { 17 | return; 18 | } 19 | 20 | throw new Error(`Invalid "auth" option: ${JSON.stringify(auth)}`); 21 | } 22 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/rest-api-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRestApiEndpoints; 2 | 3 | const ROUTES = require("./routes.json"); 4 | 5 | function octokitRestApiEndpoints(octokit) { 6 | // Aliasing scopes for backward compatibility 7 | // See https://github.com/octokit/rest.js/pull/1134 8 | ROUTES.gitdata = ROUTES.git; 9 | ROUTES.authorization = ROUTES.oauthAuthorizations; 10 | ROUTES.pullRequests = ROUTES.pulls; 11 | 12 | octokit.registerEndpoints(ROUTES); 13 | } 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/authentication/validate.js: -------------------------------------------------------------------------------- 1 | module.exports = validateAuth; 2 | 3 | function validateAuth(auth) { 4 | if (typeof auth === "string") { 5 | return; 6 | } 7 | 8 | if (typeof auth === "function") { 9 | return; 10 | } 11 | 12 | if (auth.username && auth.password) { 13 | return; 14 | } 15 | 16 | if (auth.clientId && auth.clientSecret) { 17 | return; 18 | } 19 | 20 | throw new Error(`Invalid "auth" option: ${JSON.stringify(auth)}`); 21 | } 22 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/rest-api-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRestApiEndpoints; 2 | 3 | const ROUTES = require("./routes.json"); 4 | 5 | function octokitRestApiEndpoints(octokit) { 6 | // Aliasing scopes for backward compatibility 7 | // See https://github.com/octokit/rest.js/pull/1134 8 | ROUTES.gitdata = ROUTES.git; 9 | ROUTES.authorization = ROUTES.oauthAuthorizations; 10 | ROUTES.pullRequests = ROUTES.pulls; 11 | 12 | octokit.registerEndpoints(ROUTES); 13 | } 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler { 3 | token: string; 4 | constructor(token: string); 5 | prepareRequest(options: any): void; 6 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 7 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-page-links.js: -------------------------------------------------------------------------------- 1 | module.exports = getPageLinks 2 | 3 | function getPageLinks (link) { 4 | link = link.link || link.headers.link || '' 5 | 6 | const links = {} 7 | 8 | // link format: 9 | // '; rel="next", ; rel="last"' 10 | link.replace(/<([^>]*)>;\s*rel="([\w]*)"/g, (m, uri, type) => { 11 | links[type] = uri 12 | }) 13 | 14 | return links 15 | } 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-page-links.js: -------------------------------------------------------------------------------- 1 | module.exports = getPageLinks 2 | 3 | function getPageLinks (link) { 4 | link = link.link || link.headers.link || '' 5 | 6 | const links = {} 7 | 8 | // link format: 9 | // '; rel="next", ; rel="last"' 10 | link.replace(/<([^>]*)>;\s*rel="([\w]*)"/g, (m, uri, type) => { 11 | links[type] = uri 12 | }) 13 | 14 | return links 15 | } 16 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/defaults.js: -------------------------------------------------------------------------------- 1 | import { getUserAgent } from "universal-user-agent"; 2 | import { VERSION } from "./version"; 3 | const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`; 4 | export const DEFAULTS = { 5 | method: "GET", 6 | baseUrl: "https://api.github.com", 7 | headers: { 8 | accept: "application/vnd.github.v3+json", 9 | "user-agent": userAgent 10 | }, 11 | mediaType: { 12 | format: "", 13 | previews: [] 14 | } 15 | }; 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/defaults.js: -------------------------------------------------------------------------------- 1 | import { getUserAgent } from "universal-user-agent"; 2 | import { VERSION } from "./version"; 3 | const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`; 4 | export const DEFAULTS = { 5 | method: "GET", 6 | baseUrl: "https://api.github.com", 7 | headers: { 8 | accept: "application/vnd.github.v3+json", 9 | "user-agent": userAgent 10 | }, 11 | mediaType: { 12 | format: "", 13 | previews: [] 14 | } 15 | }; 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/client.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/client1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/client2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/proxy1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/proxy2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = proxy2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/server1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/server2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = server2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- 1 | # STOP # 2 | 3 | If you are debugging a failed build or have a question about GitHub Actions in 4 | general do **NOT** open an issue here. Either post on the Actions sections of 5 | the [GitHub Community](https://github.community/t5/GitHub-Actions/bd-p/actions) 6 | or the [RStudio 7 | Community](https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions) 8 | forums. 9 | 10 | Open an issue here _only_ if you have a feature request or bug in one of the 11 | custom R specific actions themselves. 12 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/lodash.get/README.md: -------------------------------------------------------------------------------- 1 | # lodash.get v4.4.2 2 | 3 | The [lodash](https://lodash.com/) method `_.get` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.get 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var get = require('lodash.get'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#get) or [package source](https://github.com/lodash/lodash/blob/4.4.2-npm-packages/lodash.get) for more details. 19 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/lodash.set/README.md: -------------------------------------------------------------------------------- 1 | # lodash.set v4.3.2 2 | 3 | The [lodash](https://lodash.com/) method `_.set` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.set 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var set = require('lodash.set'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#set) or [package source](https://github.com/lodash/lodash/blob/4.3.2-npm-packages/lodash.set) for more details. 19 | -------------------------------------------------------------------------------- /pr-push/node_modules/lodash.get/README.md: -------------------------------------------------------------------------------- 1 | # lodash.get v4.4.2 2 | 3 | The [lodash](https://lodash.com/) method `_.get` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.get 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var get = require('lodash.get'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#get) or [package source](https://github.com/lodash/lodash/blob/4.4.2-npm-packages/lodash.get) for more details. 19 | -------------------------------------------------------------------------------- /pr-push/node_modules/lodash.set/README.md: -------------------------------------------------------------------------------- 1 | # lodash.set v4.3.2 2 | 3 | The [lodash](https://lodash.com/) method `_.set` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.set 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var set = require('lodash.set'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#set) or [package source](https://github.com/lodash/lodash/blob/4.3.2-npm-packages/lodash.set) for more details. 19 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/client.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/client1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/client2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/proxy1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/proxy2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = proxy2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/server1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/server2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = server2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/handlers/basiccreds.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BasicCredentialHandler implements ifm.IRequestHandler { 3 | username: string; 4 | password: string; 5 | constructor(username: string, password: string); 6 | prepareRequest(options: any): void; 7 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 8 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 9 | } 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/client.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/proxy1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/proxy2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = proxy2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/server2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = server2 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-node/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | class Deprecation extends Error { 6 | constructor(message) { 7 | super(message); // Maintains proper stack trace (only available on V8) 8 | 9 | /* istanbul ignore next */ 10 | 11 | if (Error.captureStackTrace) { 12 | Error.captureStackTrace(this, this.constructor); 13 | } 14 | 15 | this.name = 'Deprecation'; 16 | } 17 | 18 | } 19 | 20 | exports.Deprecation = Deprecation; 21 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/lodash.uniq/README.md: -------------------------------------------------------------------------------- 1 | # lodash.uniq v4.5.0 2 | 3 | The [lodash](https://lodash.com/) method `_.uniq` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.uniq 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var uniq = require('lodash.uniq'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#uniq) or [package source](https://github.com/lodash/lodash/blob/4.5.0-npm-packages/lodash.uniq) for more details. 19 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-node/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | class Deprecation extends Error { 6 | constructor(message) { 7 | super(message); // Maintains proper stack trace (only available on V8) 8 | 9 | /* istanbul ignore next */ 10 | 11 | if (Error.captureStackTrace) { 12 | Error.captureStackTrace(this, this.constructor); 13 | } 14 | 15 | this.name = 'Deprecation'; 16 | } 17 | 18 | } 19 | 20 | exports.Deprecation = Deprecation; 21 | -------------------------------------------------------------------------------- /pr-push/node_modules/lodash.uniq/README.md: -------------------------------------------------------------------------------- 1 | # lodash.uniq v4.5.0 2 | 3 | The [lodash](https://lodash.com/) method `_.uniq` exported as a [Node.js](https://nodejs.org/) module. 4 | 5 | ## Installation 6 | 7 | Using npm: 8 | ```bash 9 | $ {sudo -H} npm i -g npm 10 | $ npm i --save lodash.uniq 11 | ``` 12 | 13 | In Node.js: 14 | ```js 15 | var uniq = require('lodash.uniq'); 16 | ``` 17 | 18 | See the [documentation](https://lodash.com/docs#uniq) or [package source](https://github.com/lodash/lodash/blob/4.5.0-npm-packages/lodash.uniq) for more details. 19 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/handlers/basiccreds.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BasicCredentialHandler implements ifm.IRequestHandler { 3 | username: string; 4 | password: string; 5 | constructor(username: string, password: string); 6 | prepareRequest(options: any): void; 7 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 8 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 9 | } 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/client1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/client2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/server1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = JP 10 | OU = nodejs_jp 11 | CN = localhost 12 | emailAddress = koichik@improvement.jp 13 | 14 | [ req_attributes ] 15 | challengePassword = A challenge password 16 | 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/handlers/basiccreds.d.ts: -------------------------------------------------------------------------------- 1 | import ifm = require('../Interfaces'); 2 | export declare class BasicCredentialHandler implements ifm.IRequestHandler { 3 | username: string; 4 | password: string; 5 | constructor(username: string, password: string); 6 | prepareRequest(options: any): void; 7 | canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; 8 | handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/github.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"github.js","sourceRoot":"","sources":["../src/github.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gGAAgG;AAChG,8CAA0E;AAC1E,yDAAmC;AACnC,mDAAoC;AAEpC,0CAA0C;AAC1C,cAAO,CAAC,SAAS,GAAG,IAAI,cAAO,EAAE,CAAA;AAEpB,QAAA,OAAO,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,CAAA;AAE5C,MAAa,MAAO,SAAQ,cAAO;IAMjC,YAAY,KAAa,EAAE,OAAsC,EAAE;QACjE,KAAK,iCAAK,IAAI,KAAE,IAAI,EAAE,SAAS,KAAK,EAAE,IAAE,CAAA;QACxC,IAAI,CAAC,OAAO,GAAG,kBAAQ,CAAC;YACtB,OAAO,EAAE,EAAC,aAAa,EAAE,SAAS,KAAK,EAAE,EAAC;SAC3C,CAAC,CAAA;IACJ,CAAC;CACF;AAZD,wBAYC"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/graphql/lib/error.js: -------------------------------------------------------------------------------- 1 | module.exports = class GraphqlError extends Error { 2 | constructor (request, response) { 3 | const message = response.data.errors[0].message 4 | super(message) 5 | 6 | Object.assign(this, response.data) 7 | this.name = 'GraphqlError' 8 | this.request = request 9 | 10 | // Maintains proper stack trace (only available on V8) 11 | /* istanbul ignore next */ 12 | if (Error.captureStackTrace) { 13 | Error.captureStackTrace(this, this.constructor) 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/github.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"github.js","sourceRoot":"","sources":["../src/github.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gGAAgG;AAChG,8CAA0E;AAC1E,yDAAmC;AACnC,mDAAoC;AAEpC,0CAA0C;AAC1C,cAAO,CAAC,SAAS,GAAG,IAAI,cAAO,EAAE,CAAA;AAEpB,QAAA,OAAO,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,CAAA;AAE5C,MAAa,MAAO,SAAQ,cAAO;IAMjC,YAAY,KAAa,EAAE,OAAsC,EAAE;QACjE,KAAK,iCAAK,IAAI,KAAE,IAAI,EAAE,SAAS,KAAK,EAAE,IAAE,CAAA;QACxC,IAAI,CAAC,OAAO,GAAG,kBAAQ,CAAC;YACtB,OAAO,EAAE,EAAC,aAAa,EAAE,SAAS,KAAK,EAAE,EAAC;SAC3C,CAAC,CAAA;IACJ,CAAC;CACF;AAZD,wBAYC"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/graphql/lib/error.js: -------------------------------------------------------------------------------- 1 | module.exports = class GraphqlError extends Error { 2 | constructor (request, response) { 3 | const message = response.data.errors[0].message 4 | super(message) 5 | 6 | Object.assign(this, response.data) 7 | this.name = 'GraphqlError' 8 | this.request = request 9 | 10 | // Maintains proper stack trace (only available on V8) 11 | /* istanbul ignore next */ 12 | if (Error.captureStackTrace) { 13 | Error.captureStackTrace(this, this.constructor) 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definitelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message?: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definitelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message?: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent2-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOgIBAAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf+6fVgdpVhYg5 3 | QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAQJBAMT6Bf34+UHKY1ObpsbH 4 | 9u2jsVblFq1rWvs8GPMY6oertzvwm3DpuSUp7PTgOB1nLTLYtCERbQ4ovtN8tn3p 5 | OHUCIQDzIEGsoCr5vlxXvy2zJwu+fxYuhTZWMVuo1397L0VyhwIhANQh+yzqUgaf 6 | WRtSB4T2W7ADtJI35ET61jKBty3CqJY3AiAIwju7dVW3A5WeD6Qc1SZGKZvp9yCb 7 | AFI2BfVwwaY11wIgXF3PeGcvACMyMWsuSv7aPXHfliswAbkWuzcwA4TW01ECIGWa 8 | cgsDvVFxmfM5NPSuT/UDTa6R5BFISB5ea0N0AR3I 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent4-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOQIBAAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfXm/JiEpLXOHHq 3 | fSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAQJAN8RQb+dx1A7rejtdWbfM 4 | Rww7PD07Oz2eL/a72wgFsdIabRuVypIoHunqV0sAegYtNJt9yu+VhREw0R5tx/qz 5 | EQIhAPY+nmzp0b4iFRk7mtGUmCTr9iwwzoqzITwphE7FpQnFAiEA1ihUHFT9YPHO 6 | f85skM6qZv77NEgXHO8NJmQZ5GX1ZK8CICzle+Mluo0tD6W7HV4q9pZ8wzSJbY8S 7 | W/PpKetm09F1AiAWTw8sAGKAtc/IGo3Oq+iuYAN1F8lolzJsfGMCGujsOwIgAJKP 8 | t3eXilwX3ZlsDWSklWNZ7iYcfYrvAc3JqU6gFCE= 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca1 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca2 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca3 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca4 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definitelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message?: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent2-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOgIBAAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf+6fVgdpVhYg5 3 | QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAQJBAMT6Bf34+UHKY1ObpsbH 4 | 9u2jsVblFq1rWvs8GPMY6oertzvwm3DpuSUp7PTgOB1nLTLYtCERbQ4ovtN8tn3p 5 | OHUCIQDzIEGsoCr5vlxXvy2zJwu+fxYuhTZWMVuo1397L0VyhwIhANQh+yzqUgaf 6 | WRtSB4T2W7ADtJI35ET61jKBty3CqJY3AiAIwju7dVW3A5WeD6Qc1SZGKZvp9yCb 7 | AFI2BfVwwaY11wIgXF3PeGcvACMyMWsuSv7aPXHfliswAbkWuzcwA4TW01ECIGWa 8 | cgsDvVFxmfM5NPSuT/UDTa6R5BFISB5ea0N0AR3I 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent4-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOQIBAAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfXm/JiEpLXOHHq 3 | fSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAQJAN8RQb+dx1A7rejtdWbfM 4 | Rww7PD07Oz2eL/a72wgFsdIabRuVypIoHunqV0sAegYtNJt9yu+VhREw0R5tx/qz 5 | EQIhAPY+nmzp0b4iFRk7mtGUmCTr9iwwzoqzITwphE7FpQnFAiEA1ihUHFT9YPHO 6 | f85skM6qZv77NEgXHO8NJmQZ5GX1ZK8CICzle+Mluo0tD6W7HV4q9pZ8wzSJbY8S 7 | W/PpKetm09F1AiAWTw8sAGKAtc/IGo3Oq+iuYAN1F8lolzJsfGMCGujsOwIgAJKP 8 | t3eXilwX3ZlsDWSklWNZ7iYcfYrvAc3JqU6gFCE= 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca1 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca2 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca3 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca4 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent1-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnbXh75+j61QWwe 3 | cn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAQJBAI2cU1IuR+4IO87WPyAB 4 | 76kruoo87AeNQkjjvuQ/00+b/6IS45mcEP5Kw0NukbqBhIw2di9uQ9J51DJ/ZfQr 5 | +YECIQDUHaN3ZjIdJ7/w8Yq9Zzz+3kY2F/xEz6e4ftOFW8bY2QIhAMAref+WYckC 6 | oECgOLAvAxB1lI4j7oCbAaawfxKdnPj5AiEAi95rXx09aGpAsBGmSdScrPdG1v6j 7 | 83/2ebrvoZ1uFqkCIB0AssnrRVjUB6GZTNTyU3ERfdkx/RX1zvr8WkFR/lXpAiB7 8 | cUZ1i8ZkZrPrdVgw2cb28UJM7qZHQnXcMHTXFFvxeQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent3-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI00HC9icBRaZE 3 | dKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAQJAIk+G9s2SKgFa8y3a2jGZ 4 | LfqABSzmJGooaIsOpLuYLd6eCC31XUDlT4rPVGRhysKQCQ4+NMjgdnj9ZqNnvXY/ 5 | RQIhAOgbdltr3Ey2hy7RuDW5rmOeJTuVqCrZ7QI8ifyCEbYTAiEAyRfvWSvvASeP 6 | kZTMUhATRUpuyDQW+058NE0oJSinTpsCIQCR/FPhBGI3TcaQyA9Ym0T4GwvIAkUX 7 | TqInefRAAX8qSQIgZVJPAdIWGbHSL9sWW97HpukLCorcbYEtKbkamiZyrjMCIQCX 8 | lX76ttkeId5OsJGQcF67eFMMr2UGZ1WMf6M39lCYHQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent2-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOgIBAAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf+6fVgdpVhYg5 3 | QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAQJBAMT6Bf34+UHKY1ObpsbH 4 | 9u2jsVblFq1rWvs8GPMY6oertzvwm3DpuSUp7PTgOB1nLTLYtCERbQ4ovtN8tn3p 5 | OHUCIQDzIEGsoCr5vlxXvy2zJwu+fxYuhTZWMVuo1397L0VyhwIhANQh+yzqUgaf 6 | WRtSB4T2W7ADtJI35ET61jKBty3CqJY3AiAIwju7dVW3A5WeD6Qc1SZGKZvp9yCb 7 | AFI2BfVwwaY11wIgXF3PeGcvACMyMWsuSv7aPXHfliswAbkWuzcwA4TW01ECIGWa 8 | cgsDvVFxmfM5NPSuT/UDTa6R5BFISB5ea0N0AR3I 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent4-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOQIBAAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfXm/JiEpLXOHHq 3 | fSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAQJAN8RQb+dx1A7rejtdWbfM 4 | Rww7PD07Oz2eL/a72wgFsdIabRuVypIoHunqV0sAegYtNJt9yu+VhREw0R5tx/qz 5 | EQIhAPY+nmzp0b4iFRk7mtGUmCTr9iwwzoqzITwphE7FpQnFAiEA1ihUHFT9YPHO 6 | f85skM6qZv77NEgXHO8NJmQZ5GX1ZK8CICzle+Mluo0tD6W7HV4q9pZ8wzSJbY8S 7 | W/PpKetm09F1AiAWTw8sAGKAtc/IGo3Oq+iuYAN1F8lolzJsfGMCGujsOwIgAJKP 8 | t3eXilwX3ZlsDWSklWNZ7iYcfYrvAc3JqU6gFCE= 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca1 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca2 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca3 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 9999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = password 8 | 9 | [ req_distinguished_name ] 10 | C = JP 11 | OU = nodejs_jp 12 | CN = ca4 13 | emailAddress = koichik@improvement.jp 14 | 15 | [ req_attributes ] 16 | challengePassword = A challenge password 17 | 18 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/nice-try/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 6 | 7 | ## [1.0.5] - 2018-08-25 8 | 9 | ### Changed 10 | 11 | - Removed `prepublish` script from `package.json` 12 | 13 | ## [1.0.4] - 2017-08-08 14 | 15 | ### New 16 | 17 | - Added a changelog 18 | 19 | ### Changed 20 | 21 | - Ignore `yarn.lock` and `package-lock.json` files -------------------------------------------------------------------------------- /pr-push/node_modules/nice-try/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 6 | 7 | ## [1.0.5] - 2018-08-25 8 | 9 | ### Changed 10 | 11 | - Removed `prepublish` script from `package.json` 12 | 13 | ## [1.0.4] - 2017-08-08 14 | 15 | ### New 16 | 17 | - Added a changelog 18 | 19 | ### Changed 20 | 21 | - Ignore `yarn.lock` and `package-lock.json` files -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent1-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnbXh75+j61QWwe 3 | cn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAQJBAI2cU1IuR+4IO87WPyAB 4 | 76kruoo87AeNQkjjvuQ/00+b/6IS45mcEP5Kw0NukbqBhIw2di9uQ9J51DJ/ZfQr 5 | +YECIQDUHaN3ZjIdJ7/w8Yq9Zzz+3kY2F/xEz6e4ftOFW8bY2QIhAMAref+WYckC 6 | oECgOLAvAxB1lI4j7oCbAaawfxKdnPj5AiEAi95rXx09aGpAsBGmSdScrPdG1v6j 7 | 83/2ebrvoZ1uFqkCIB0AssnrRVjUB6GZTNTyU3ERfdkx/RX1zvr8WkFR/lXpAiB7 8 | cUZ1i8ZkZrPrdVgw2cb28UJM7qZHQnXcMHTXFFvxeQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent3-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI00HC9icBRaZE 3 | dKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAQJAIk+G9s2SKgFa8y3a2jGZ 4 | LfqABSzmJGooaIsOpLuYLd6eCC31XUDlT4rPVGRhysKQCQ4+NMjgdnj9ZqNnvXY/ 5 | RQIhAOgbdltr3Ey2hy7RuDW5rmOeJTuVqCrZ7QI8ifyCEbYTAiEAyRfvWSvvASeP 6 | kZTMUhATRUpuyDQW+058NE0oJSinTpsCIQCR/FPhBGI3TcaQyA9Ym0T4GwvIAkUX 7 | TqInefRAAX8qSQIgZVJPAdIWGbHSL9sWW97HpukLCorcbYEtKbkamiZyrjMCIQCX 8 | lX76ttkeId5OsJGQcF67eFMMr2UGZ1WMf6M39lCYHQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definatelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent1-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnbXh75+j61QWwe 3 | cn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAQJBAI2cU1IuR+4IO87WPyAB 4 | 76kruoo87AeNQkjjvuQ/00+b/6IS45mcEP5Kw0NukbqBhIw2di9uQ9J51DJ/ZfQr 5 | +YECIQDUHaN3ZjIdJ7/w8Yq9Zzz+3kY2F/xEz6e4ftOFW8bY2QIhAMAref+WYckC 6 | oECgOLAvAxB1lI4j7oCbAaawfxKdnPj5AiEAi95rXx09aGpAsBGmSdScrPdG1v6j 7 | 83/2ebrvoZ1uFqkCIB0AssnrRVjUB6GZTNTyU3ERfdkx/RX1zvr8WkFR/lXpAiB7 8 | cUZ1i8ZkZrPrdVgw2cb28UJM7qZHQnXcMHTXFFvxeQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent3-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBOwIBAAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI00HC9icBRaZE 3 | dKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAQJAIk+G9s2SKgFa8y3a2jGZ 4 | LfqABSzmJGooaIsOpLuYLd6eCC31XUDlT4rPVGRhysKQCQ4+NMjgdnj9ZqNnvXY/ 5 | RQIhAOgbdltr3Ey2hy7RuDW5rmOeJTuVqCrZ7QI8ifyCEbYTAiEAyRfvWSvvASeP 6 | kZTMUhATRUpuyDQW+058NE0oJSinTpsCIQCR/FPhBGI3TcaQyA9Ym0T4GwvIAkUX 7 | TqInefRAAX8qSQIgZVJPAdIWGbHSL9sWW97HpukLCorcbYEtKbkamiZyrjMCIQCX 8 | lX76ttkeId5OsJGQcF67eFMMr2UGZ1WMf6M39lCYHQ== 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /examples/check-release.yaml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | name: R-CMD-check 4 | 5 | jobs: 6 | R-CMD-check: 7 | runs-on: macOS-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | - uses: r-lib/actions/setup-r@master 11 | - name: Install dependencies 12 | run: | 13 | install.packages(c("remotes", "rcmdcheck")) 14 | remotes::install_deps(dependencies = TRUE) 15 | shell: Rscript {0} 16 | - name: Check 17 | run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error") 18 | shell: Rscript {0} 19 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definatelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/with-defaults.js: -------------------------------------------------------------------------------- 1 | import { endpointWithDefaults } from "./endpoint-with-defaults"; 2 | import { merge } from "./merge"; 3 | import { parse } from "./parse"; 4 | export function withDefaults(oldDefaults, newDefaults) { 5 | const DEFAULTS = merge(oldDefaults, newDefaults); 6 | const endpoint = endpointWithDefaults.bind(null, DEFAULTS); 7 | return Object.assign(endpoint, { 8 | DEFAULTS, 9 | defaults: withDefaults.bind(null, DEFAULTS), 10 | merge: merge.bind(null, DEFAULTS), 11 | parse 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/with-defaults.js: -------------------------------------------------------------------------------- 1 | import { endpointWithDefaults } from "./endpoint-with-defaults"; 2 | import { merge } from "./merge"; 3 | import { parse } from "./parse"; 4 | export function withDefaults(oldDefaults, newDefaults) { 5 | const DEFAULTS = merge(oldDefaults, newDefaults); 6 | const endpoint = endpointWithDefaults.bind(null, DEFAULTS); 7 | return Object.assign(endpoint, { 8 | DEFAULTS, 9 | defaults: withDefaults.bind(null, DEFAULTS), 10 | merge: merge.bind(null, DEFAULTS), 11 | parse 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definitelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message?: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- 1 | interface CommandProperties { 2 | [key: string]: string; 3 | } 4 | /** 5 | * Commands 6 | * 7 | * Command Format: 8 | * ##[name key=value;key=value]message 9 | * 10 | * Examples: 11 | * ##[warning]This is the user warning message 12 | * ##[set-secret name=mypassword]definitelyNotAPassword! 13 | */ 14 | export declare function issueCommand(command: string, properties: CommandProperties, message: string): void; 15 | export declare function issue(name: string, message?: string): void; 16 | export {}; 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/ca2-crl.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN X509 CRL----- 2 | MIIBXTCBxzANBgkqhkiG9w0BAQQFADB6MQswCQYDVQQGEwJVUzELMAkGA1UECBMC 3 | Q0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAOBgNVBAsTB05vZGUu 4 | anMxDDAKBgNVBAMTA2NhMjEgMB4GCSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5v 5 | cmcXDTExMDMxNDE4MjkxNloXDTEzMTIwNzE4MjkxNlowHDAaAgkAgwa+feG7CZoX 6 | DTExMDMxNDE4MjkxNFowDQYJKoZIhvcNAQEEBQADgYEArRKuEkOla61fm4zlZtHe 7 | LTXFV0Hgo21PScHAp6JqPol4rN5R9+EmUkv7gPCVVBJ9VjIgxSosHiLsDiz3zR+u 8 | txHemhzbdIVANAIiChnFct8sEqH2eL4N6XNUIlMIR06NjNl7NbN8w8haqiearnuT 9 | wmnaL4TThPmpbpKAF7N7JqQ= 10 | -----END X509 CRL----- 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-crl.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN X509 CRL----- 2 | MIIBXTCBxzANBgkqhkiG9w0BAQQFADB6MQswCQYDVQQGEwJVUzELMAkGA1UECBMC 3 | Q0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAOBgNVBAsTB05vZGUu 4 | anMxDDAKBgNVBAMTA2NhMjEgMB4GCSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5v 5 | cmcXDTExMDMxNDE4MjkxNloXDTEzMTIwNzE4MjkxNlowHDAaAgkAgwa+feG7CZoX 6 | DTExMDMxNDE4MjkxNFowDQYJKoZIhvcNAQEEBQADgYEArRKuEkOla61fm4zlZtHe 7 | LTXFV0Hgo21PScHAp6JqPol4rN5R9+EmUkv7gPCVVBJ9VjIgxSosHiLsDiz3zR+u 8 | txHemhzbdIVANAIiChnFct8sEqH2eL4N6XNUIlMIR06NjNl7NbN8w8haqiearnuT 9 | wmnaL4TThPmpbpKAF7N7JqQ= 10 | -----END X509 CRL----- 11 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-crl.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN X509 CRL----- 2 | MIIBXTCBxzANBgkqhkiG9w0BAQQFADB6MQswCQYDVQQGEwJVUzELMAkGA1UECBMC 3 | Q0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAOBgNVBAsTB05vZGUu 4 | anMxDDAKBgNVBAMTA2NhMjEgMB4GCSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5v 5 | cmcXDTExMDMxNDE4MjkxNloXDTEzMTIwNzE4MjkxNlowHDAaAgkAgwa+feG7CZoX 6 | DTExMDMxNDE4MjkxNFowDQYJKoZIhvcNAQEEBQADgYEArRKuEkOla61fm4zlZtHe 7 | LTXFV0Hgo21PScHAp6JqPol4rN5R9+EmUkv7gPCVVBJ9VjIgxSosHiLsDiz3zR+u 8 | txHemhzbdIVANAIiChnFct8sEqH2eL4N6XNUIlMIR06NjNl7NbN8w8haqiearnuT 9 | wmnaL4TThPmpbpKAF7N7JqQ= 10 | -----END X509 CRL----- 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent1-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDExIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnb 6 | Xh75+j61QWwecn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AF+AfG64hNyYHum46m6i7RgnUBrJSOynGjs23TekV4he3QdMSAAPPqbll8W14+y3 9 | vOo7/yQ2v2uTqxCjakUNPPs= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent2-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDIxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf 6 | +6fVgdpVhYg5QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AJnll2pt5l0pzskQSpjjLVTlFDFmJr/AZ3UK8v0WxBjYjCe5Jx4YehkChpxIyDUm 9 | U3J9q9MDUf0+Y2+EGkssFfk= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent3-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDMxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI 6 | 00HC9icBRaZEdKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AEGo76iH+a8pnE+RWQT+wg9/BL+iIuqrcFXLs0rbGonqderrwXAe15ODwql/Bfu3 9 | zgMt8ooTsgMPcMX9EgmubEM= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent4-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDQxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfX 6 | m/JiEpLXOHHqfSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AMzo7GUOBtGm5MSck1rrEE2C1bU3qoVvXVuiN3A/57zXeNeq24FZMLnkDeL9U+/b 9 | Kj646XFou04gla982Xp74p0= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent1-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDExIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnb 6 | Xh75+j61QWwecn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AF+AfG64hNyYHum46m6i7RgnUBrJSOynGjs23TekV4he3QdMSAAPPqbll8W14+y3 9 | vOo7/yQ2v2uTqxCjakUNPPs= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent2-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDIxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf 6 | +6fVgdpVhYg5QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AJnll2pt5l0pzskQSpjjLVTlFDFmJr/AZ3UK8v0WxBjYjCe5Jx4YehkChpxIyDUm 9 | U3J9q9MDUf0+Y2+EGkssFfk= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent3-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDMxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI 6 | 00HC9icBRaZEdKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AEGo76iH+a8pnE+RWQT+wg9/BL+iIuqrcFXLs0rbGonqderrwXAe15ODwql/Bfu3 9 | zgMt8ooTsgMPcMX9EgmubEM= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent4-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDQxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfX 6 | m/JiEpLXOHHqfSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AMzo7GUOBtGm5MSck1rrEE2C1bU3qoVvXVuiN3A/57zXeNeq24FZMLnkDeL9U+/b 9 | Kj646XFou04gla982Xp74p0= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent1 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent2 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent3 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent1 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent2 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent3 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent1-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDExIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnb 6 | Xh75+j61QWwecn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AF+AfG64hNyYHum46m6i7RgnUBrJSOynGjs23TekV4he3QdMSAAPPqbll8W14+y3 9 | vOo7/yQ2v2uTqxCjakUNPPs= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent1.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent1 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent2-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDIxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf 6 | +6fVgdpVhYg5QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AJnll2pt5l0pzskQSpjjLVTlFDFmJr/AZ3UK8v0WxBjYjCe5Jx4YehkChpxIyDUm 9 | U3J9q9MDUf0+Y2+EGkssFfk= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent2.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent2 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent3-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDMxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI 6 | 00HC9icBRaZEdKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AEGo76iH+a8pnE+RWQT+wg9/BL+iIuqrcFXLs0rbGonqderrwXAe15ODwql/Bfu3 9 | zgMt8ooTsgMPcMX9EgmubEM= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent3.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent3 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent4-csr.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH 3 | EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD 4 | EwZhZ2VudDQxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ 5 | KoZIhvcNAQEBBQADSwAwSAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfX 6 | m/JiEpLXOHHqfSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAaAlMCMGCSqG 7 | SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB 8 | AMzo7GUOBtGm5MSck1rrEE2C1bU3qoVvXVuiN3A/57zXeNeq24FZMLnkDeL9U+/b 9 | Kj646XFou04gla982Xp74p0= 10 | -----END CERTIFICATE REQUEST----- 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/index.js: -------------------------------------------------------------------------------- 1 | const Octokit = require("./lib/core"); 2 | 3 | const CORE_PLUGINS = [ 4 | require("./plugins/log"), 5 | require("./plugins/authentication-deprecated"), // deprecated: remove in v17 6 | require("./plugins/authentication"), 7 | require("./plugins/pagination"), 8 | require("./plugins/normalize-git-reference-responses"), 9 | require("./plugins/register-endpoints"), 10 | require("./plugins/rest-api-endpoints"), 11 | require("./plugins/validate"), 12 | 13 | require("octokit-pagination-methods") // deprecated: remove in v17 14 | ]; 15 | 16 | module.exports = Octokit.plugin(CORE_PLUGINS); 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/authentication/index.js: -------------------------------------------------------------------------------- 1 | module.exports = authenticationPlugin; 2 | 3 | const beforeRequest = require("./before-request"); 4 | const requestError = require("./request-error"); 5 | const validate = require("./validate"); 6 | 7 | function authenticationPlugin(octokit, options) { 8 | if (!options.auth) { 9 | return; 10 | } 11 | 12 | validate(options.auth); 13 | 14 | const state = { 15 | octokit, 16 | auth: options.auth 17 | }; 18 | 19 | octokit.hook.before("request", beforeRequest.bind(null, state)); 20 | octokit.hook.error("request", requestError.bind(null, state)); 21 | } 22 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/index.js: -------------------------------------------------------------------------------- 1 | const Octokit = require("./lib/core"); 2 | 3 | const CORE_PLUGINS = [ 4 | require("./plugins/log"), 5 | require("./plugins/authentication-deprecated"), // deprecated: remove in v17 6 | require("./plugins/authentication"), 7 | require("./plugins/pagination"), 8 | require("./plugins/normalize-git-reference-responses"), 9 | require("./plugins/register-endpoints"), 10 | require("./plugins/rest-api-endpoints"), 11 | require("./plugins/validate"), 12 | 13 | require("octokit-pagination-methods") // deprecated: remove in v17 14 | ]; 15 | 16 | module.exports = Octokit.plugin(CORE_PLUGINS); 17 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/authentication/index.js: -------------------------------------------------------------------------------- 1 | module.exports = authenticationPlugin; 2 | 3 | const beforeRequest = require("./before-request"); 4 | const requestError = require("./request-error"); 5 | const validate = require("./validate"); 6 | 7 | function authenticationPlugin(octokit, options) { 8 | if (!options.auth) { 9 | return; 10 | } 11 | 12 | validate(options.auth); 13 | 14 | const state = { 15 | octokit, 16 | auth: options.auth 17 | }; 18 | 19 | octokit.hook.before("request", beforeRequest.bind(null, state)); 20 | octokit.hook.error("request", requestError.bind(null, state)); 21 | } 22 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/exec.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,mCAAkC;AAElC;;;;;;;;;GASG;AACH,SAAsB,IAAI,CACxB,WAAmB,EACnB,IAAe,EACf,OAAwB;;QAExB,MAAM,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAA;QACpD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;SACpE;QACD,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;QAC/B,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAA;QAC9C,MAAM,MAAM,GAAkB,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACxE,OAAO,MAAM,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CAAA;AAdD,oBAcC"} -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/exec.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,mCAAkC;AAElC;;;;;;;;;GASG;AACH,SAAsB,IAAI,CACxB,WAAmB,EACnB,IAAe,EACf,OAAwB;;QAExB,MAAM,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAA;QACpD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;SACpE;QACD,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;QAC/B,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAA;QAC9C,MAAM,MAAM,GAAkB,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACxE,OAAO,MAAM,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CAAA;AAdD,oBAcC"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js: -------------------------------------------------------------------------------- 1 | import isPlainObject from "is-plain-object"; 2 | export function mergeDeep(defaults, options) { 3 | const result = Object.assign({}, defaults); 4 | Object.keys(options).forEach(key => { 5 | if (isPlainObject(options[key])) { 6 | if (!(key in defaults)) 7 | Object.assign(result, { [key]: options[key] }); 8 | else 9 | result[key] = mergeDeep(defaults[key], options[key]); 10 | } 11 | else { 12 | Object.assign(result, { [key]: options[key] }); 13 | } 14 | }); 15 | return result; 16 | } 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/exec.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,mCAAkC;AAElC;;;;;;;;;GASG;AACH,SAAsB,IAAI,CACxB,WAAmB,EACnB,IAAe,EACf,OAAwB;;QAExB,MAAM,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAA;QACpD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;SACpE;QACD,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;QAC/B,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAA;QAC9C,MAAM,MAAM,GAAkB,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACxE,OAAO,MAAM,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CAAA;AAdD,oBAcC"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js: -------------------------------------------------------------------------------- 1 | import isPlainObject from "is-plain-object"; 2 | export function mergeDeep(defaults, options) { 3 | const result = Object.assign({}, defaults); 4 | Object.keys(options).forEach(key => { 5 | if (isPlainObject(options[key])) { 6 | if (!(key in defaults)) 7 | Object.assign(result, { [key]: options[key] }); 8 | else 9 | result[key] = mergeDeep(defaults[key], options[key]); 10 | } 11 | else { 12 | Object.assign(result, { [key]: options[key] }); 13 | } 14 | }); 15 | return result; 16 | } 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/exec.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,mCAAkC;AAElC;;;;;;;;;GASG;AACH,SAAsB,IAAI,CACxB,WAAmB,EACnB,IAAe,EACf,OAAwB;;QAExB,MAAM,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAA;QACpD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;SACpE;QACD,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;QAC/B,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAA;QAC9C,MAAM,MAAM,GAAkB,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACxE,OAAO,MAAM,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CAAA;AAdD,oBAcC"} -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/exec.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,mCAAkC;AAElC;;;;;;;;;GASG;AACH,SAAsB,IAAI,CACxB,WAAmB,EACnB,IAAe,EACf,OAAwB;;QAExB,MAAM,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAA;QACpD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;SACpE;QACD,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;QAC/B,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAA;QAC9C,MAAM,MAAM,GAAkB,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACxE,OAAO,MAAM,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CAAA;AAdD,oBAcC"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/exec.d.ts: -------------------------------------------------------------------------------- 1 | import * as im from './interfaces'; 2 | /** 3 | * Exec a command. 4 | * Output will be streamed to the live console. 5 | * Returns promise with return code 6 | * 7 | * @param commandLine command to execute (can include additional args). Must be correctly escaped. 8 | * @param args optional arguments for tool. Escaping is handled by the lib. 9 | * @param options optional exec options. See ExecOptions 10 | * @returns Promise exit code 11 | */ 12 | export declare function exec(commandLine: string, args?: string[], options?: im.ExecOptions): Promise; 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/exec.d.ts: -------------------------------------------------------------------------------- 1 | import * as im from './interfaces'; 2 | /** 3 | * Exec a command. 4 | * Output will be streamed to the live console. 5 | * Returns promise with return code 6 | * 7 | * @param commandLine command to execute (can include additional args). Must be correctly escaped. 8 | * @param args optional arguments for tool. Escaping is handled by the lib. 9 | * @param options optional exec options. See ExecOptions 10 | * @returns Promise exit code 11 | */ 12 | export declare function exec(commandLine: string, args?: string[], options?: im.ExecOptions): Promise; 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/exec.d.ts: -------------------------------------------------------------------------------- 1 | import * as im from './interfaces'; 2 | /** 3 | * Exec a command. 4 | * Output will be streamed to the live console. 5 | * Returns promise with return code 6 | * 7 | * @param commandLine command to execute (can include additional args). Must be correctly escaped. 8 | * @param args optional arguments for tool. Escaping is handled by the lib. 9 | * @param options optional exec options. See ExecOptions 10 | * @returns Promise exit code 11 | */ 12 | export declare function exec(commandLine: string, args?: string[], options?: im.ExecOptions): Promise; 13 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/exec.d.ts: -------------------------------------------------------------------------------- 1 | import * as im from './interfaces'; 2 | /** 3 | * Exec a command. 4 | * Output will be streamed to the live console. 5 | * Returns promise with return code 6 | * 7 | * @param commandLine command to execute (can include additional args). Must be correctly escaped. 8 | * @param args optional arguments for tool. Escaping is handled by the lib. 9 | * @param options optional exec options. See ExecOptions 10 | * @returns Promise exit code 11 | */ 12 | export declare function exec(commandLine: string, args?: string[], options?: im.ExecOptions): Promise; 13 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/exec.d.ts: -------------------------------------------------------------------------------- 1 | import * as im from './interfaces'; 2 | /** 3 | * Exec a command. 4 | * Output will be streamed to the live console. 5 | * Returns promise with return code 6 | * 7 | * @param commandLine command to execute (can include additional args). Must be correctly escaped. 8 | * @param args optional arguments for tool. Escaping is handled by the lib. 9 | * @param options optional exec options. See ExecOptions 10 | * @returns Promise exit code 11 | */ 12 | export declare function exec(commandLine: string, args?: string[], options?: im.ExecOptions): Promise; 13 | -------------------------------------------------------------------------------- /.github/workflows/check-release.yaml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | branches: 4 | - master 5 | pull_request: 6 | branches: 7 | - master 8 | 9 | name: R-CMD-check 10 | 11 | jobs: 12 | R-CMD-check: 13 | runs-on: macOS-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | - uses: r-lib/actions/setup-r@master 17 | - name: Install dependencies 18 | run: | 19 | install.packages(c("remotes", "rcmdcheck")) 20 | remotes::install_deps(dependencies = TRUE) 21 | shell: Rscript {0} 22 | - name: Check 23 | run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error") 24 | shell: Rscript {0} 25 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Handlers.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var basiccreds_1 = require("./handlers/basiccreds"); 4 | exports.BasicCredentialHandler = basiccreds_1.BasicCredentialHandler; 5 | var bearertoken_1 = require("./handlers/bearertoken"); 6 | exports.BearerCredentialHandler = bearertoken_1.BearerCredentialHandler; 7 | var ntlm_1 = require("./handlers/ntlm"); 8 | exports.NtlmCredentialHandler = ntlm_1.NtlmCredentialHandler; 9 | var personalaccesstoken_1 = require("./handlers/personalaccesstoken"); 10 | exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler; 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/strip-eof/readme.md: -------------------------------------------------------------------------------- 1 | # strip-eof [![Build Status](https://travis-ci.org/sindresorhus/strip-eof.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-eof) 2 | 3 | > Strip the [End-Of-File](https://en.wikipedia.org/wiki/End-of-file) (EOF) character from a string/buffer 4 | 5 | 6 | ## Install 7 | 8 | ``` 9 | $ npm install --save strip-eof 10 | ``` 11 | 12 | 13 | ## Usage 14 | 15 | ```js 16 | const stripEof = require('strip-eof'); 17 | 18 | stripEof('foo\nbar\n\n'); 19 | //=> 'foo\nbar\n' 20 | 21 | stripEof(new Buffer('foo\nbar\n\n')).toString(); 22 | //=> 'foo\nbar\n' 23 | ``` 24 | 25 | 26 | ## License 27 | 28 | MIT © [Sindre Sorhus](http://sindresorhus.com) 29 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/authentication/with-authorization-prefix.js: -------------------------------------------------------------------------------- 1 | module.exports = withAuthorizationPrefix; 2 | 3 | const atob = require("atob-lite"); 4 | 5 | const REGEX_IS_BASIC_AUTH = /^[\w-]+:/; 6 | 7 | function withAuthorizationPrefix(authorization) { 8 | if (/^(basic|bearer|token) /i.test(authorization)) { 9 | return authorization; 10 | } 11 | 12 | try { 13 | if (REGEX_IS_BASIC_AUTH.test(atob(authorization))) { 14 | return `basic ${authorization}`; 15 | } 16 | } catch (error) {} 17 | 18 | if (authorization.split(/\./).length === 3) { 19 | return `bearer ${authorization}`; 20 | } 21 | 22 | return `token ${authorization}`; 23 | } 24 | -------------------------------------------------------------------------------- /pr-push/node_modules/strip-eof/readme.md: -------------------------------------------------------------------------------- 1 | # strip-eof [![Build Status](https://travis-ci.org/sindresorhus/strip-eof.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-eof) 2 | 3 | > Strip the [End-Of-File](https://en.wikipedia.org/wiki/End-of-file) (EOF) character from a string/buffer 4 | 5 | 6 | ## Install 7 | 8 | ``` 9 | $ npm install --save strip-eof 10 | ``` 11 | 12 | 13 | ## Usage 14 | 15 | ```js 16 | const stripEof = require('strip-eof'); 17 | 18 | stripEof('foo\nbar\n\n'); 19 | //=> 'foo\nbar\n' 20 | 21 | stripEof(new Buffer('foo\nbar\n\n')).toString(); 22 | //=> 'foo\nbar\n' 23 | ``` 24 | 25 | 26 | ## License 27 | 28 | MIT © [Sindre Sorhus](http://sindresorhus.com) 29 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Handlers.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var basiccreds_1 = require("./handlers/basiccreds"); 4 | exports.BasicCredentialHandler = basiccreds_1.BasicCredentialHandler; 5 | var bearertoken_1 = require("./handlers/bearertoken"); 6 | exports.BearerCredentialHandler = bearertoken_1.BearerCredentialHandler; 7 | var ntlm_1 = require("./handlers/ntlm"); 8 | exports.NtlmCredentialHandler = ntlm_1.NtlmCredentialHandler; 9 | var personalaccesstoken_1 = require("./handlers/personalaccesstoken"); 10 | exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/test/keys/agent4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent4 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | [ ext_key_usage ] 21 | extendedKeyUsage = clientAuth 22 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Handlers.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var basiccreds_1 = require("./handlers/basiccreds"); 4 | exports.BasicCredentialHandler = basiccreds_1.BasicCredentialHandler; 5 | var bearertoken_1 = require("./handlers/bearertoken"); 6 | exports.BearerCredentialHandler = bearertoken_1.BearerCredentialHandler; 7 | var ntlm_1 = require("./handlers/ntlm"); 8 | exports.NtlmCredentialHandler = ntlm_1.NtlmCredentialHandler; 9 | var personalaccesstoken_1 = require("./handlers/personalaccesstoken"); 10 | exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler; 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/authentication/with-authorization-prefix.js: -------------------------------------------------------------------------------- 1 | module.exports = withAuthorizationPrefix; 2 | 3 | const atob = require("atob-lite"); 4 | 5 | const REGEX_IS_BASIC_AUTH = /^[\w-]+:/; 6 | 7 | function withAuthorizationPrefix(authorization) { 8 | if (/^(basic|bearer|token) /i.test(authorization)) { 9 | return authorization; 10 | } 11 | 12 | try { 13 | if (REGEX_IS_BASIC_AUTH.test(atob(authorization))) { 14 | return `basic ${authorization}`; 15 | } 16 | } catch (error) {} 17 | 18 | if (authorization.split(/\./).length === 3) { 19 | return `bearer ${authorization}`; 20 | } 21 | 22 | return `token ${authorization}`; 23 | } 24 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/agent4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent4 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | [ ext_key_usage ] 21 | extendedKeyUsage = clientAuth 22 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/agent4.cnf: -------------------------------------------------------------------------------- 1 | [ req ] 2 | default_bits = 1024 3 | days = 999 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | 8 | [ req_distinguished_name ] 9 | C = US 10 | ST = CA 11 | L = SF 12 | O = Joyent 13 | OU = Node.js 14 | CN = agent4 15 | emailAddress = ry@tinyclouds.org 16 | 17 | [ req_attributes ] 18 | challengePassword = A challenge password 19 | 20 | [ ext_key_usage ] 21 | extendedKeyUsage = clientAuth 22 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- 1 | range-set ::= range ( logical-or range ) * 2 | logical-or ::= ( ' ' ) * '||' ( ' ' ) * 3 | range ::= hyphen | simple ( ' ' simple ) * | '' 4 | hyphen ::= partial ' - ' partial 5 | simple ::= primitive | partial | tilde | caret 6 | primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial 7 | partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? 8 | xr ::= 'x' | 'X' | '*' | nr 9 | nr ::= '0' | [1-9] ( [0-9] ) * 10 | tilde ::= '~' partial 11 | caret ::= '^' partial 12 | qualifier ::= ( '-' pre )? ( '+' build )? 13 | pre ::= parts 14 | build ::= parts 15 | parts ::= part ( '.' part ) * 16 | part ::= nr | [-0-9A-Za-z]+ 17 | -------------------------------------------------------------------------------- /pr-push/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- 1 | range-set ::= range ( logical-or range ) * 2 | logical-or ::= ( ' ' ) * '||' ( ' ' ) * 3 | range ::= hyphen | simple ( ' ' simple ) * | '' 4 | hyphen ::= partial ' - ' partial 5 | simple ::= primitive | partial | tilde | caret 6 | primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial 7 | partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? 8 | xr ::= 'x' | 'X' | '*' | nr 9 | nr ::= '0' | [1-9] ( [0-9] ) * 10 | tilde ::= '~' partial 11 | caret ::= '^' partial 12 | qualifier ::= ( '-' pre )? ( '+' build )? 13 | pre ::= parts 14 | build ::= parts 15 | parts ::= part ( '.' part ) * 16 | part ::= nr | [-0-9A-Za-z]+ 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- 1 | range-set ::= range ( logical-or range ) * 2 | logical-or ::= ( ' ' ) * '||' ( ' ' ) * 3 | range ::= hyphen | simple ( ' ' simple ) * | '' 4 | hyphen ::= partial ' - ' partial 5 | simple ::= primitive | partial | tilde | caret 6 | primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial 7 | partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? 8 | xr ::= 'x' | 'X' | '*' | nr 9 | nr ::= '0' | [1-9] ( [0-9] ) * 10 | tilde ::= '~' partial 11 | caret ::= '^' partial 12 | qualifier ::= ( '-' pre )? ( '+' build )? 13 | pre ::= parts 14 | build ::= parts 15 | parts ::= part ( '.' part ) * 16 | part ::= nr | [-0-9A-Za-z]+ 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/lib/md5.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var crypto = require('crypto'); 4 | 5 | function md5(bytes) { 6 | if (typeof Buffer.from === 'function') { 7 | // Modern Buffer API 8 | if (Array.isArray(bytes)) { 9 | bytes = Buffer.from(bytes); 10 | } else if (typeof bytes === 'string') { 11 | bytes = Buffer.from(bytes, 'utf8'); 12 | } 13 | } else { 14 | // Pre-v4 Buffer API 15 | if (Array.isArray(bytes)) { 16 | bytes = new Buffer(bytes); 17 | } else if (typeof bytes === 'string') { 18 | bytes = new Buffer(bytes, 'utf8'); 19 | } 20 | } 21 | 22 | return crypto.createHash('md5').update(bytes).digest(); 23 | } 24 | 25 | module.exports = md5; 26 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/context.d.ts: -------------------------------------------------------------------------------- 1 | import { WebhookPayload } from './interfaces'; 2 | export declare class Context { 3 | /** 4 | * Webhook payload object that triggered the workflow 5 | */ 6 | payload: WebhookPayload; 7 | eventName: string; 8 | sha: string; 9 | ref: string; 10 | workflow: string; 11 | action: string; 12 | actor: string; 13 | /** 14 | * Hydrate the context from the environment 15 | */ 16 | constructor(); 17 | readonly issue: { 18 | owner: string; 19 | repo: string; 20 | number: number; 21 | }; 22 | readonly repo: { 23 | owner: string; 24 | repo: string; 25 | }; 26 | } 27 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/context.d.ts: -------------------------------------------------------------------------------- 1 | import { WebhookPayload } from './interfaces'; 2 | export declare class Context { 3 | /** 4 | * Webhook payload object that triggered the workflow 5 | */ 6 | payload: WebhookPayload; 7 | eventName: string; 8 | sha: string; 9 | ref: string; 10 | workflow: string; 11 | action: string; 12 | actor: string; 13 | /** 14 | * Hydrate the context from the environment 15 | */ 16 | constructor(); 17 | readonly issue: { 18 | owner: string; 19 | repo: string; 20 | number: number; 21 | }; 22 | readonly repo: { 23 | owner: string; 24 | repo: string; 25 | }; 26 | } 27 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- 1 | range-set ::= range ( logical-or range ) * 2 | logical-or ::= ( ' ' ) * '||' ( ' ' ) * 3 | range ::= hyphen | simple ( ' ' simple ) * | '' 4 | hyphen ::= partial ' - ' partial 5 | simple ::= primitive | partial | tilde | caret 6 | primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial 7 | partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? 8 | xr ::= 'x' | 'X' | '*' | nr 9 | nr ::= '0' | [1-9] ( [0-9] ) * 10 | tilde ::= '~' partial 11 | caret ::= '^' partial 12 | qualifier ::= ( '-' pre )? ( '+' build )? 13 | pre ::= parts 14 | build ::= parts 15 | parts ::= part ( '.' part ) * 16 | part ::= nr | [-0-9A-Za-z]+ 17 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/lib/md5.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var crypto = require('crypto'); 4 | 5 | function md5(bytes) { 6 | if (typeof Buffer.from === 'function') { 7 | // Modern Buffer API 8 | if (Array.isArray(bytes)) { 9 | bytes = Buffer.from(bytes); 10 | } else if (typeof bytes === 'string') { 11 | bytes = Buffer.from(bytes, 'utf8'); 12 | } 13 | } else { 14 | // Pre-v4 Buffer API 15 | if (Array.isArray(bytes)) { 16 | bytes = new Buffer(bytes); 17 | } else if (typeof bytes === 'string') { 18 | bytes = new Buffer(bytes, 'utf8'); 19 | } 20 | } 21 | 22 | return crypto.createHash('md5').update(bytes).digest(); 23 | } 24 | 25 | module.exports = md5; 26 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/lib/sha1.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var crypto = require('crypto'); 4 | 5 | function sha1(bytes) { 6 | if (typeof Buffer.from === 'function') { 7 | // Modern Buffer API 8 | if (Array.isArray(bytes)) { 9 | bytes = Buffer.from(bytes); 10 | } else if (typeof bytes === 'string') { 11 | bytes = Buffer.from(bytes, 'utf8'); 12 | } 13 | } else { 14 | // Pre-v4 Buffer API 15 | if (Array.isArray(bytes)) { 16 | bytes = new Buffer(bytes); 17 | } else if (typeof bytes === 'string') { 18 | bytes = new Buffer(bytes, 'utf8'); 19 | } 20 | } 21 | 22 | return crypto.createHash('sha1').update(bytes).digest(); 23 | } 24 | 25 | module.exports = sha1; 26 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- 1 | range-set ::= range ( logical-or range ) * 2 | logical-or ::= ( ' ' ) * '||' ( ' ' ) * 3 | range ::= hyphen | simple ( ' ' simple ) * | '' 4 | hyphen ::= partial ' - ' partial 5 | simple ::= primitive | partial | tilde | caret 6 | primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial 7 | partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? 8 | xr ::= 'x' | 'X' | '*' | nr 9 | nr ::= '0' | [1-9] ( [0-9] ) * 10 | tilde ::= '~' partial 11 | caret ::= '^' partial 12 | qualifier ::= ( '-' pre )? ( '+' build )? 13 | pre ::= parts 14 | build ::= parts 15 | parts ::= part ( '.' part ) * 16 | part ::= nr | [-0-9A-Za-z]+ 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginationMethodsPlugin 2 | 3 | function paginationMethodsPlugin (octokit) { 4 | octokit.getFirstPage = require('./lib/get-first-page').bind(null, octokit) 5 | octokit.getLastPage = require('./lib/get-last-page').bind(null, octokit) 6 | octokit.getNextPage = require('./lib/get-next-page').bind(null, octokit) 7 | octokit.getPreviousPage = require('./lib/get-previous-page').bind(null, octokit) 8 | octokit.hasFirstPage = require('./lib/has-first-page') 9 | octokit.hasLastPage = require('./lib/has-last-page') 10 | octokit.hasNextPage = require('./lib/has-next-page') 11 | octokit.hasPreviousPage = require('./lib/has-previous-page') 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginationMethodsPlugin 2 | 3 | function paginationMethodsPlugin (octokit) { 4 | octokit.getFirstPage = require('./lib/get-first-page').bind(null, octokit) 5 | octokit.getLastPage = require('./lib/get-last-page').bind(null, octokit) 6 | octokit.getNextPage = require('./lib/get-next-page').bind(null, octokit) 7 | octokit.getPreviousPage = require('./lib/get-previous-page').bind(null, octokit) 8 | octokit.hasFirstPage = require('./lib/has-first-page') 9 | octokit.hasLastPage = require('./lib/has-last-page') 10 | octokit.hasNextPage = require('./lib/has-next-page') 11 | octokit.hasPreviousPage = require('./lib/has-previous-page') 12 | } 13 | --------------------------------------------------------------------------------