Skip to content

Commit

Permalink
chore(workflows): move committer info to var, only run github tests o…
Browse files Browse the repository at this point in the history
…n PR
  • Loading branch information
itinerare committed Feb 26, 2024
1 parent b5185fa commit 8b09cc9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .forgejo/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
with:
message: 'refactor: fix PHP styling'
default_author: github_actions
author_name: Amadeus[bot]
author_email: [email protected]
author_name: ${{ vars.COMMITTER_NAME }}
author_email: ${{ vars.COMMITTER_EMAIL }}

blade-formatter:
runs-on: docker
Expand Down Expand Up @@ -71,8 +71,8 @@ jobs:
pull: '--rebase --autostash'
message: 'refactor: fix blade formatting'
default_author: github_actions
author_name: Amadeus[bot]
author_email: [email protected]
author_name: ${{ vars.COMMITTER_NAME }}
author_email: ${{ vars.COMMITTER_EMAIL }}

rebuild-vite-assets:
runs-on: docker
Expand Down Expand Up @@ -102,5 +102,5 @@ jobs:
pull: '--rebase --autostash'
message: 'chore(deps): rebuild vite assets'
default_author: github_actions
author_name: Amadeus[bot]
author_email: [email protected]
author_name: ${{ vars.COMMITTER_NAME }}
author_email: ${{ vars.COMMITTER_EMAIL }}
4 changes: 0 additions & 4 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Laravel Tests

on:
push:
branches:
- 'main'
- 'develop'
pull_request:
branches:
- '**'
Expand Down

0 comments on commit 8b09cc9

Please sign in to comment.