mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
a4f410ee02
17489 changed files with 397230 additions and 156555 deletions
23
.github/labeler.yml
vendored
Normal file
23
.github/labeler.yml
vendored
Normal 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
15
.github/workflows/labeler-auto.yml
vendored
Normal 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
24
.github/workflows/labeler-manual.yml
vendored
Normal 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 }}
|
||||
2
.github/workflows/mtg-fetch-cards.yml
vendored
2
.github/workflows/mtg-fetch-cards.yml
vendored
|
|
@ -5,8 +5,6 @@ on:
|
|||
types: [created]
|
||||
issues:
|
||||
types: [opened]
|
||||
pull_request:
|
||||
types: [opened]
|
||||
pull_request_review:
|
||||
types: [submitted]
|
||||
pull_request_review_comment:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue