Skip to content

Commit d996ecf

Browse files
author
Workflow Sync Bot
committed
💬 - Files Synced | Runner ID : 113 | ⚡ Triggered By fuelviews/github-workflow-sync
1 parent f9bbae7 commit d996ecf

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

‎.github/workflows/run-tests.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ on:
77
branches:
88
- main
99

10+
permissions:
11+
pull-requests: write
12+
contents: write
13+
1014
jobs:
1115
test:
1216
runs-on: ${{ matrix.os }}
13-
timeout-minutes: 5
17+
timeout-minutes: 10
1418
strategy:
1519
fail-fast: true
1620
matrix:
@@ -25,13 +29,6 @@ jobs:
2529
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2630

2731
steps:
28-
- name: Get Token
29-
id: get_workflow_token
30-
uses: peter-murray/workflow-application-token-action@v2
31-
with:
32-
application_id: ${{ vars.FUELVIEWS_BOT_APP_ID}}
33-
application_private_key: ${{ secrets.FUELVIEWS_BOT_APP_PRIVATE_KEY }}
34-
3532
- name: Checkout code
3633
uses: actions/checkout@v4
3734

@@ -49,7 +46,7 @@ jobs:
4946
5047
- name: Configure GitHub Token
5148
env:
52-
GH_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
49+
GH_TOKEN: ${{ secrets.GHA_PERSONAL_ACCESS_TOKEN }}
5350
run: |
5451
git config --global url."https://${GH_TOKEN}@github.com/".insteadOf "https://github.com/"
5552
git config --global url."https://${GH_TOKEN}@github.com/".insteadOf "[email protected]:"
@@ -64,3 +61,4 @@ jobs:
6461

6562
- name: Execute tests
6663
run: vendor/bin/pest --ci
64+

0 commit comments

Comments
 (0)