├── .github ├── ISSUE_TEMPLATE │ ├── question.md │ └── solution.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── issue.yml │ └── new-release.yml ├── .gitignore ├── .lastsynced ├── LICENSE ├── README.md ├── actions ├── addLabelRNVersion │ ├── action.yml │ ├── dist │ │ └── index.js │ └── index.js └── newRelease │ ├── action.yml │ ├── dist │ └── index.js │ └── index.js ├── package.json └── yarn.lock /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/.github/ISSUE_TEMPLATE/solution.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/new-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/.github/workflows/new-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.lastsynced: -------------------------------------------------------------------------------- 1 | 0.78.0-rc.3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/README.md -------------------------------------------------------------------------------- /actions/addLabelRNVersion/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/addLabelRNVersion/action.yml -------------------------------------------------------------------------------- /actions/addLabelRNVersion/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/addLabelRNVersion/dist/index.js -------------------------------------------------------------------------------- /actions/addLabelRNVersion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/addLabelRNVersion/index.js -------------------------------------------------------------------------------- /actions/newRelease/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/newRelease/action.yml -------------------------------------------------------------------------------- /actions/newRelease/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/newRelease/dist/index.js -------------------------------------------------------------------------------- /actions/newRelease/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/actions/newRelease/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/upgrade-support/HEAD/yarn.lock --------------------------------------------------------------------------------