mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 18:58:56 +00:00
CI: Remove always()
from job conditionals
These jobs have no dependencies on other jobs, nor should they be uncancelable.
This commit is contained in:
parent
cf9bf59550
commit
25e05e76c4
Notes:
github-actions[bot]
2024-12-17 13:50:05 +00:00
Author: https://github.com/gmta
Commit: 25e05e76c4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2884
Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 2 additions and 2 deletions
2
.github/workflows/lint-code.yml
vendored
2
.github/workflows/lint-code.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/lint-commits.yml
vendored
2
.github/workflows/lint-commits.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue