Skip to content

Commit 31bb578

Browse files
committed
gh actions
1 parent f6bbe1d commit 31bb578

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/labeler.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,22 @@
66
# https://github.com/actions/labeler
77

88
name: Labeler
9-
on: [pull_request]
9+
10+
on:
11+
pull_request_target:
12+
types: [opened, synchronize, reopened, ready_for_review]
13+
14+
permissions:
15+
contents: read
16+
issues: write
1017

1118
jobs:
1219
label:
1320
runs-on: ubuntu-latest
14-
permissions:
15-
contents: read
16-
pull-requests: write
1721

1822
steps:
19-
- uses: actions/labeler@v4
23+
- name: Label pull request
24+
uses: actions/labeler@v5
2025
with:
2126
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2227
sync-labels: true

app/Http/Controllers/ProfilesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
use Illuminate\Http\Request;
1616
use Illuminate\Support\Facades\Auth;
1717
use Illuminate\Support\Facades\Hash;
18+
use Illuminate\Support\Facades\Validator;
1819
use Intervention\Image\Facades\Image;
1920
use jeremykenedy\Uuid\Uuid;
20-
use Illuminate\Support\Facades\Validator;
2121

2222
class ProfilesController extends Controller
2323
{

0 commit comments

Comments
 (0)