Skip to content

Bump gitpython from 3.1.37 to 3.1.41 in /scripts/ci #1739

Bump gitpython from 3.1.37 to 3.1.41 in /scripts/ci

Bump gitpython from 3.1.37 to 3.1.41 in /scripts/ci #1739

Workflow file for this run

name: "PR Labeling"
on:
pull_request_target:
types: [opened, closed, synchronize, reopened, edited, ready_for_review]
permissions:
contents: read
pull-requests: write
jobs:
label-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
if (context.payload.pull_request.base.ref == 'mrtk3')
{
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['MRTK3']
})
}
// When we switch the repo to MRTK3, we'll have to edit this.
if (context.payload.pull_request.base.ref == 'main')
{
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['MRTK2']
})
}