Skip to content

Commit 0010221

Browse files
authored
Merge pull request #10 from Laravel-Lang/main
fork sync
2 parents 7659119 + cf53eb1 commit 0010221

File tree

229 files changed

+14094
-355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+14094
-355
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ updates:
55
directory: /
66
schedule:
77
interval: daily
8+
labels:
9+
- dependabot
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Close Stale Issues and PRs
2+
3+
on:
4+
schedule:
5+
- cron: 34 0 * * *
6+
workflow_dispatch:
7+
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
stale:
14+
name: Close Stale
15+
uses: Laravel-Lang/.github/.github/workflows/close-stale-issues.yml@main

.github/workflows/code-style.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,5 @@ permissions: write-all
66

77
jobs:
88
style:
9-
runs-on: ubuntu-latest
10-
11-
steps:
12-
- name: Checkout code
13-
uses: actions/checkout@v4
14-
15-
- name: Check the code style
16-
uses: TheDragonCode/codestyler@v3
17-
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
18-
19-
- name: Fix the code style
20-
uses: TheDragonCode/codestyler@v3
21-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
22-
with:
23-
github_token: ${{ secrets.COMPOSER_TOKEN }}
24-
fix: true
9+
name: Code Style
10+
uses: Laravel-Lang/.github/.github/workflows/code-style.yml@main

.github/workflows/docs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Documentation
2+
3+
on:
4+
release:
5+
push:
6+
branches:
7+
- main
8+
9+
permissions: write-all
10+
11+
jobs:
12+
update:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Generate docs trigger
20+
uses: myrotvorets/[email protected]
21+
with:
22+
token: ${{ secrets.COMPOSER_TOKEN }}
23+
repo: Laravel-Lang/docs
24+
type: docs

.github/workflows/locales.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Add Locales
2+
3+
on:
4+
schedule:
5+
- cron: 29 1 * * *
6+
workflow_dispatch:
7+
8+
permissions: write-all
9+
10+
jobs:
11+
missing:
12+
uses: Laravel-Lang/.github/.github/workflows/locales.yml@main

.github/workflows/release-drafter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- main
7+
release:
8+
types:
9+
- unpublished
710
workflow_dispatch:
811

912
jobs:

.github/workflows/statuses.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Translation Status
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions: write-all
10+
11+
jobs:
12+
create:
13+
uses: Laravel-Lang/.github/.github/workflows/statuses.yml@main

.github/workflows/sync.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Synchronization
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions: write-all
10+
11+
jobs:
12+
create:
13+
uses: Laravel-Lang/.github/.github/workflows/sync.yml@main
Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
name: phpunit
1+
name: Tests
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'projects/**'
7+
pull_request:
8+
branches-ignore:
9+
- 'projects/**'
410

511
permissions: read-all
612

@@ -12,7 +18,7 @@ jobs:
1218
fail-fast: true
1319
matrix:
1420
php: [ "8.1", "8.2", "8.3" ]
15-
publisher: [ "14.0", "15.0" ]
21+
publisher: [ "14.0", "15.0", "16.0" ]
1622

1723
name: PHP ${{ matrix.php }}, Publisher ${{ matrix.publisher }}
1824

@@ -24,7 +30,7 @@ jobs:
2430
uses: shivammathur/setup-php@v2
2531
with:
2632
php-version: ${{ matrix.php }}
27-
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
33+
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv
2834
coverage: xdebug
2935
env:
3036
COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }}

.github/workflows/translate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: translate
1+
name: Machine Translation
22

33
on:
4-
schedule:
5-
- cron: 0 0 * * *
4+
#schedule:
5+
# - cron: 17 1 1,15 * *
66
workflow_dispatch:
77

88
permissions: write-all

0 commit comments

Comments
 (0)