Merge remote-tracking branch 'upstream/master'

This commit is contained in:
ExpensiveKoala 2024-09-29 04:50:50 -04:00
commit a4f410ee02
17489 changed files with 397230 additions and 156555 deletions

23
.github/labeler.yml vendored Normal file
View file

@ -0,0 +1,23 @@
dev:
- changed-files:
- any-glob-to-any-file: [ '*', 'Utils/**', '/.github/**' ]
engine:
- changed-files:
- any-glob-to-any-file: [ 'Mage/**' ]
client:
- changed-files:
- any-glob-to-any-file: [ 'Mage.Client/**', 'Mage.Common/**', 'Mage.Plugins/**' ]
server:
- changed-files:
- any-glob-to-any-file: [ 'Mage.Server*/**' ]
tests:
- changed-files:
- any-glob-to-any-file: [ 'Mage.Verify/**', 'Mage.Tests/**', 'Mage.Reports/**' ]
cards:
- changed-files:
- any-glob-to-any-file: [ 'Mage.Sets/**' ]

15
.github/workflows/labeler-auto.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: "Pull Request Labeler (auto)"
on:
- pull_request_target
jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- id: label-the-PR
uses: actions/labeler@v5
with:
configuration-path: '.github/labeler.yml'

24
.github/workflows/labeler-manual.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: "Pull Request Labeler (manual)"
on:
workflow_dispatch:
inputs:
oldPRs:
# no multi lines support, so call by single PR only
description: 'PR number to process'
required: true
type: string
default: '123'
jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- id: label-the-PR
uses: actions/labeler@v5
with:
configuration-path: '.github/labeler.yml'
pr-number: |
${{ github.event.inputs.oldPRs }}

View file

@ -5,8 +5,6 @@ on:
types: [created]
issues:
types: [opened]
pull_request:
types: [opened]
pull_request_review:
types: [submitted]
pull_request_review_comment: