We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a636b6 + 8362a80 commit f502d20Copy full SHA for f502d20
.github/workflows/hlint.yml
@@ -3,12 +3,12 @@ name: HLint
3
on:
4
push:
5
paths:
6
- - '**/site.hs'
+ - 'message-index/site.hs'
7
branches:
8
- main
9
pull_request:
10
11
12
types:
13
- opened
14
- synchronize
@@ -18,11 +18,14 @@ jobs:
18
hlint:
19
name: HLint
20
runs-on: ubuntu-latest
21
+ permissions:
22
+ # Needed to upload results to GitHub code scanning.
23
+ security-events: write
24
steps:
25
- uses: actions/checkout@v3
26
- name: Check site.hs with hlint
27
uses: haskell-actions/hlint-scan@v1
28
with:
29
path: |
- **/site.hs
- hints: message_index/.hlint.yml
30
+ message-index/site.hs
31
+ hints: message-index/.hlint.yml
0 commit comments