mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-21 17:59:41 +01:00
ci: enable stricter Bash error checking
Co-authored-by: Matt Sturgeon <matt@sturgeon.me.uk>
This commit is contained in:
parent
695b0b80f8
commit
d73eb6f142
10 changed files with 38 additions and 0 deletions
4
.github/workflows/backport.yml
vendored
4
.github/workflows/backport.yml
vendored
|
|
@ -8,6 +8,10 @@ on:
|
|||
- closed
|
||||
- labeled
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
backport:
|
||||
name: Backport Pull Request
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- "main"
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
jobs:
|
||||
flakehub-publish:
|
||||
if: github.repository == 'nix-community/nixvim'
|
||||
|
|
|
|||
|
|
@ -9,6 +9,9 @@ on:
|
|||
description: "The existing reference to publish"
|
||||
type: "string"
|
||||
required: true
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
jobs:
|
||||
publish-flake:
|
||||
if: github.event_name != 'push' || github.repository == 'nix-community/nixvim'
|
||||
|
|
|
|||
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
|
|
@ -9,6 +9,10 @@ on:
|
|||
- "LICENSE"
|
||||
- "flake.lock"
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
treefmt:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/pr-merged.yml
vendored
4
.github/workflows/pr-merged.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
permissions:
|
||||
contents: read
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
merged:
|
||||
name: Show info
|
||||
|
|
|
|||
4
.github/workflows/tag-maintainers.yml
vendored
4
.github/workflows/tag-maintainers.yml
vendored
|
|
@ -14,6 +14,10 @@ permissions:
|
|||
contents: read # To checkout code
|
||||
pull-requests: write # To add/remove reviewers and comment
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
tag-maintainers:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/update-maintainers.yml
vendored
4
.github/workflows/update-maintainers.yml
vendored
|
|
@ -17,6 +17,10 @@ on:
|
|||
default: false
|
||||
type: boolean
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
update-maintainers:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/update-other.yml
vendored
4
.github/workflows/update-other.yml
vendored
|
|
@ -9,6 +9,10 @@ permissions:
|
|||
contents: read
|
||||
actions: write
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
name: Compute list of branches
|
||||
|
|
|
|||
4
.github/workflows/update.yml
vendored
4
.github/workflows/update.yml
vendored
|
|
@ -29,6 +29,10 @@ permissions:
|
|||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
update:
|
||||
name: Update the flake inputs and generate options
|
||||
|
|
|
|||
4
.github/workflows/website.yml
vendored
4
.github/workflows/website.yml
vendored
|
|
@ -12,6 +12,10 @@ concurrency:
|
|||
group: docs-website
|
||||
cancel-in-progress: true
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
name: Version info
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue