We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f2eec2 commit 2072aabCopy full SHA for 2072aab
.github/workflows/verifyVersion.js
@@ -29,15 +29,15 @@ module.exports = async (github, context) => {
29
// Ensure the version matches one we support
30
const recentReleases = (
31
await github.rest.repos.listReleases({
32
- owner: 'facebook',
33
- repo: 'react-native',
+ owner: context.repo.owner,
+ repo: context.repo.repo,
34
})
35
).data.map(release => release.name);
36
37
const latestRelease = (
38
await github.rest.repos.getLatestRelease({
39
40
41
42
).data;
43
const latestVersion = parseVersionFromString(latestRelease.name);
0 commit comments