We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c5a1b3 commit 0271562Copy full SHA for 0271562
1 file changed
.github/workflows/self-integrate.yml
@@ -0,0 +1,21 @@
1
+name: "Integrate"
2
+
3
+on: # yamllint disable-line rule:truthy
4
+ pull_request: null
5
+ push:
6
+ branches:
7
+ - "main"
8
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: "Checkout"
14
+ uses: "actions/checkout@v3"
15
16
+ - name: "Lint YAML files"
17
+ uses: "ibiqlik/action-yamllint@v3.1"
18
+ with:
19
+ config_file: ".yamllint.yaml"
20
+ file_or_dir: "."
21
+ strict: true
0 commit comments