35 lines
912 B
Diff
35 lines
912 B
Diff
|
From 955222afe5bd7f23da48b94087ad7a4256d47605 Mon Sep 17 00:00:00 2001
|
||
|
From: Jan Macku <jamacku@redhat.com>
|
||
|
Date: Tue, 15 Feb 2022 15:29:03 +0100
|
||
|
Subject: [PATCH] ci: Add Differential ShellCheck action
|
||
|
|
||
|
Related: #2050567
|
||
|
---
|
||
|
.github/workflows/differential-shellcheck.yml | 17 +++++++++++++++++
|
||
|
1 file changed, 17 insertions(+)
|
||
|
|
||
|
diff --git a/.github/workflows/differential-shellcheck.yml b/.github/workflows/differential-shellcheck.yml
|
||
|
new file mode 100644
|
||
|
index 00000000..095c3fe6
|
||
|
--- /dev/null
|
||
|
+++ b/.github/workflows/differential-shellcheck.yml
|
||
|
@@ -0,0 +1,17 @@
|
||
|
+name: Differential ShellCheck
|
||
|
+on:
|
||
|
+ push:
|
||
|
+ branches: [main]
|
||
|
+ pull_request:
|
||
|
+ branches: [main]
|
||
|
+
|
||
|
+jobs:
|
||
|
+ test:
|
||
|
+ runs-on: ubuntu-20.04
|
||
|
+
|
||
|
+ steps:
|
||
|
+ - name: Repository checkout
|
||
|
+ uses: actions/checkout@v2
|
||
|
+
|
||
|
+ - name: Differential ShellCheck
|
||
|
+ uses: redhat-plumbers-in-action/differential-shellcheck@v1
|
||
|
|