├── .gitignore ├── README.md ├── create-repos-file.js ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── rename.js ├── plugins │ └── index.js └── support │ └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/rename-gh-to-main/HEAD/README.md -------------------------------------------------------------------------------- /create-repos-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/rename-gh-to-main/HEAD/create-repos-file.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/integration/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/rename-gh-to-main/HEAD/cypress/integration/rename.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/rename-gh-to-main/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/cypress/add-commands' 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/rename-gh-to-main/HEAD/package.json --------------------------------------------------------------------------------