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.
2 parents aa97005 + 5392c3b commit dd29668Copy full SHA for dd29668
.github/actions-scripts/projects.js
@@ -190,7 +190,7 @@ export function generateUpdateProjectNextItemFieldMutation({
190
// Strip all non-alphanumeric out of the item ID when creating the mutation ID to avoid a GraphQL parsing error
191
// (statistically, this should still give us a unique mutation ID)
192
return `
193
- set_${fieldID.substr(1)}_item_${item.replaceAll(
+ set_${fieldID.slice(1)}_item_${item.replaceAll(
194
/[^a-z0-9]/g,
195
''
196
)}: updateProjectNextItemField(input: {
0 commit comments