File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed
Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 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'}}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 :
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 }}
You can’t perform that action at this time.
0 commit comments