Skip to content

Commit

Permalink
CI: Remove paths-ignore from the build workflows
Browse files Browse the repository at this point in the history
The idea here was probably to avoid wasting CI time... but it prevents minor changes, like #637, from being merged because all build workflows are required checks. GitHub's branch protection feature is clearly half-baked. Luckily minor changes like these virtually never happen, so for the time being it shouldn't be a big problem to remove this setting.
  • Loading branch information
rdw-software committed Jan 10, 2025
1 parent c455a9a commit 4fdd287
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ on:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
- '**.md'
- 'changelog.lua'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/ci-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ on:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
- '**.md'
- 'changelog.lua'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ on:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
- '**.md'
- 'changelog.lua'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down

0 comments on commit 4fdd287

Please sign in to comment.