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.
3-x-y
1 parent 452c6b1 commit aef99c7Copy full SHA for aef99c7
src/server/requesters/GitHubActionsRequester.ts
@@ -105,6 +105,12 @@ export class GitHubActionsRequester
105
error: 'GitHub Actions build is for a tag not on the default branch',
106
};
107
}
108
+ } else if (
109
+ claims.repository_owner === 'electron' &&
110
+ claims.repository === 'electron/node-abi' &&
111
+ claims.ref === 'refs/heads/3-x-y'
112
+ ) {
113
+ // Temporary hack to allow the 3-x-y branch to be used for releases on the node-abi repo
114
} else if (claims.ref !== `refs/heads/${project.defaultBranch}`) {
115
return {
116
ok: false,
0 commit comments