Skip to content

Commit

Permalink
chore: fix discord notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
snorreks committed Jan 16, 2025
1 parent 24e56c5 commit 8fa06e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/discord-notifications-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Discord Push Notifications

on:
push:
branches:
- '**' # Notify for all branches
branches: ['master', 'main', 'dev']
paths:
- '**' # Notify only when files are changed

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- 'game/**' # Only runs when game files change

jobs:
# Spellcheck checks
spell-check:
name: 'Spellcheck'
runs-on: ubuntu-latest
Expand All @@ -25,8 +26,8 @@ jobs:
incremental_files_only: false
root: './game'

# Formatting check
format-check:
# Formatting and linting checks
format-and-lint-check:
name: 'GDScript Formatting Check'
runs-on: ubuntu-latest
steps:
Expand All @@ -43,18 +44,6 @@ jobs:
cd game
gdformat --check ./
# Linting check
lint-check:
name: 'GDScript Linting Check'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

# Install GDScript toolkit for linting
- name: Setup GDScript toolkit
uses: Scony/godot-gdscript-toolkit@4.2.0

# Run linting check
- name: Run linting
run: |
Expand Down

0 comments on commit 8fa06e5

Please sign in to comment.