Skip to content

Commit

Permalink
CI: Remove always() from job conditionals
Browse files Browse the repository at this point in the history
These jobs have no dependencies on other jobs, nor should they be
uncancelable.
  • Loading branch information
gmta authored and trflynn89 committed Dec 17, 2024
1 parent cf9bf59 commit 25e05e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [ push, pull_request ]
jobs:
lint:
runs-on: macos-14
if: always() && github.repository == 'LadybirdBrowser/ladybird'
if: github.repository == 'LadybirdBrowser/ladybird'

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [pull_request_target]
jobs:
lint:
runs-on: ubuntu-24.04
if: always() && github.repository == 'LadybirdBrowser/ladybird'
if: github.repository == 'LadybirdBrowser/ladybird'

steps:
- name: Lint PR commits
Expand Down

0 comments on commit 25e05e7

Please sign in to comment.