Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Mar 22, 2024
1 parent ec88a60 commit 2f39fa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:

- name: Check the code style
uses: TheDragonCode/codestyler@v4
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' || github.ref != 'refs/heads/14.x' }}

- name: Fix the code style
uses: TheDragonCode/codestyler@v4
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/14.x') }}
with:
github_token: ${{ secrets.COMPOSER_TOKEN }}
fix: true
3 changes: 2 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- 14.x
release:
types:
- published
Expand All @@ -14,4 +15,4 @@ on:

jobs:
Update:
uses: Laravel-Lang/.github/.github/workflows/release-drafter.yml@main
uses: Laravel-Lang/.github/.github/workflows/release-drafter.yml@main

0 comments on commit 2f39fa1

Please sign in to comment.