Skip to content

Commit edba325

Browse files
committed
Disable line length rule for yamllint - fix indentation in stale.yml
Signed-off-by: Adam Warner <[email protected]>
1 parent 3d4476c commit edba325

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/stale.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
issues: write
1414

1515
steps:
16-
- uses: actions/stale@v5
17-
with:
18-
repo-token: ${{ secrets.GITHUB_TOKEN }}
19-
days-before-stale: 30
20-
days-before-close: 5
21-
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
22-
stale-issue-label: 'stale'
23-
exempt-issue-labels: 'Internal, Fixed in next release, Bug: Confirmed, Documentation Needed'
24-
exempt-all-issue-assignees: true
25-
operations-per-run: 300
26-
close-issue-reason: 'not_planned'
16+
- uses: actions/stale@v5
17+
with:
18+
repo-token: ${{ secrets.GITHUB_TOKEN }}
19+
days-before-stale: 30
20+
days-before-close: 5
21+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
22+
stale-issue-label: 'stale'
23+
exempt-issue-labels: 'Internal, Fixed in next release, Bug: Confirmed, Documentation Needed'
24+
exempt-all-issue-assignees: true
25+
operations-per-run: 300
26+
close-issue-reason: 'not_planned'

.stickler.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ linters:
66
flake8:
77
max-line-length: 120
88
yamllint:
9+
config: ./.yamllint.conf
910
remarklint:

.yamllint.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rules:
2+
line-length: disable
3+
document-start: disable

0 commit comments

Comments
 (0)