ci: enable stricter Bash error checking (#2001)
Link: https://github.com/nix-community/stylix/pull/2001 Reviewed-by: Matt Sturgeon <matt@sturgeon.me.uk> Reviewed-by: 0xda157 <da157@voidq.com>
This commit is contained in:
commit
4e36d6fdcd
7 changed files with 28 additions and 0 deletions
4
.github/workflows/backport.yml
vendored
4
.github/workflows/backport.yml
vendored
|
|
@ -11,6 +11,10 @@ permissions:
|
|||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
backport:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
|
|||
4
.github/workflows/check.yml
vendored
4
.github/workflows/check.yml
vendored
|
|
@ -11,6 +11,10 @@ on:
|
|||
permissions:
|
||||
contents: read
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: ${{ matrix.name }}
|
||||
|
|
|
|||
4
.github/workflows/conflicts.yml
vendored
4
.github/workflows/conflicts.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
- master
|
||||
- release-**
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
conflicts:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
|
|||
4
.github/workflows/doc.yml
vendored
4
.github/workflows/doc.yml
vendored
|
|
@ -10,6 +10,10 @@ concurrency:
|
|||
cancel-in-progress: true
|
||||
group: pages
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
docs:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
|
|||
4
.github/workflows/labels.yml
vendored
4
.github/workflows/labels.yml
vendored
|
|
@ -17,6 +17,10 @@ permissions:
|
|||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
labels:
|
||||
name: label-pr
|
||||
|
|
|
|||
4
.github/workflows/request-reviewers.yml
vendored
4
.github/workflows/request-reviewers.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
paths:
|
||||
- 'modules/**'
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
request-reviewers:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
|
|||
4
.github/workflows/update-flake.yml
vendored
4
.github/workflows/update-flake.yml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
- cron: "0 0 1 * *"
|
||||
workflow_dispatch:
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
flake-update:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue