Skip to content

Commit 8c9bace

Browse files
Copilotdannywillems
andcommitted
Move shellcheck job from changelog workflow into a dedicated shellcheck workflow
Co-authored-by: dannywillems <6018454+dannywillems@users.noreply.github.com>
1 parent cbf3404 commit 8c9bace

2 files changed

Lines changed: 16 additions & 9 deletions

File tree

.github/workflows/changelog.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,3 @@ jobs:
2828
.github/scripts/check-changelog-commit.sh
2929
"${{ github.event.pull_request.base.sha }}"
3030
31-
shellcheck:
32-
name: Shellcheck
33-
runs-on: ubuntu-latest
34-
steps:
35-
- uses: actions/checkout@v6
36-
- name: Install shellcheck
37-
run: sudo apt-get install -y shellcheck
38-
- name: Run shellcheck
39-
run: make lint-shell

.github/workflows/shellcheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Shellcheck
2+
on: push
3+
4+
permissions:
5+
contents: read
6+
7+
jobs:
8+
shellcheck:
9+
name: Shellcheck
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
- name: Install shellcheck
14+
run: sudo apt-get install -y shellcheck
15+
- name: Run shellcheck
16+
run: make lint-shell

0 commit comments

Comments
 (0)