Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
StanBarrows committed Mar 15, 2024
1 parent ead4421 commit d4d3f16
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
github-token: ${{ secrets.MY_GITHUB_TOKEN }}

- name: Auto-merge Dependabot PRs for semver-minor updates
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest

env:
PHP_VERSION: '8.3'

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: ${{ env.PHP_VERSION }}
coverage: none

- name: Install composer dependencies
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest

env:
INITIAL_VERSION: 11.0.0
RELEASE_BRANCHES: main
DEFAULT_BUMP: patch

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -19,6 +25,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
WITH_V: true
INITIAL_VERSION: 11.0.0
RELEASE_BRANCHES: main
DEFAULT_BUMP: patch
INITIAL_VERSION: ${{ env.INITIAL_VERSION }}
RELEASE_BRANCHES: ${{ env.RELEASE_BRANCHES }}
DEFAULT_BUMP: ${{ env.DEFAULT_BUMP }}

0 comments on commit d4d3f16

Please sign in to comment.