Skip to content

Add version of Microsoft.MixedReality.OpenXR.EyeLevelSceneOrigin to MRTK3, as the MR Plugin version will soon be deprecated and Unity doesn't have UI for setting Unbounded Space #1422

Add version of Microsoft.MixedReality.OpenXR.EyeLevelSceneOrigin to MRTK3, as the MR Plugin version will soon be deprecated and Unity doesn't have UI for setting Unbounded Space

Add version of Microsoft.MixedReality.OpenXR.EyeLevelSceneOrigin to MRTK3, as the MR Plugin version will soon be deprecated and Unity doesn't have UI for setting Unbounded Space #1422

name: "Issue Labeling"
on:
issues:
types: [opened, edited]
jobs:
label-issue:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
if (context.payload.issue.title.toLowerCase().includes("mrtk3") ||
context.payload.issue.body.toLowerCase().includes("mrtk3"))
{
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['MRTK3']
})
}
if (context.payload.issue.title.toLowerCase().includes("mrtk2") ||
context.payload.issue.body.toLowerCase().includes("mrtk2"))
{
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['MRTK2']
})
}