Skip to content

Commit d4d3f16

Browse files
committed
WIP
1 parent ead4421 commit d4d3f16

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: metadata
1616
uses: dependabot/fetch-metadata@v1.6
1717
with:
18-
github-token: "${{ secrets.GITHUB_TOKEN }}"
18+
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
1919

2020
- name: Auto-merge Dependabot PRs for semver-minor updates
2121
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}

.github/workflows/phpstan.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ jobs:
1010
phpstan:
1111
name: phpstan
1212
runs-on: ubuntu-latest
13+
14+
env:
15+
PHP_VERSION: '8.3'
16+
1317
steps:
1418
- uses: actions/checkout@v4
1519

1620
- name: Setup PHP
1721
uses: shivammathur/setup-php@v2
1822
with:
19-
php-version: '8.3'
23+
php-version: ${{ env.PHP_VERSION }}
2024
coverage: none
2125

2226
- name: Install composer dependencies

.github/workflows/release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ jobs:
1010
release:
1111
name: Release
1212
runs-on: ubuntu-latest
13+
14+
env:
15+
INITIAL_VERSION: 11.0.0
16+
RELEASE_BRANCHES: main
17+
DEFAULT_BUMP: patch
18+
1319
steps:
1420
- uses: actions/checkout@v4
1521
with:
@@ -19,6 +25,6 @@ jobs:
1925
env:
2026
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
2127
WITH_V: true
22-
INITIAL_VERSION: 11.0.0
23-
RELEASE_BRANCHES: main
24-
DEFAULT_BUMP: patch
28+
INITIAL_VERSION: ${{ env.INITIAL_VERSION }}
29+
RELEASE_BRANCHES: ${{ env.RELEASE_BRANCHES }}
30+
DEFAULT_BUMP: ${{ env.DEFAULT_BUMP }}

0 commit comments

Comments
 (0)