Skip to content

Commit 72aed41

Browse files
authored
fix: issue found by markdownlint (#142)
<!-- markdownlint-disable-file MD041 --> ## Pull request checklist Please check if your PR fulfills the following requirements: - [ ] I have read the [CONTRIBUTING](https://github.com/fabasoad/setup-cobol-action/blob/main/CONTRIBUTING.md) doc. - [ ] Tests for the changes have been added (for bug fixes / features). - [ ] Docs have been reviewed and added / updated if needed (for bug fixes / features). ## Pull request type <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> ## What is the new behavior <!-- Please describe the behavior or changes that are being added by this PR. --> - - - ## Does this introduce a breaking change - [ ] Yes - [ ] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. --> <!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) repository. --> --- Closes #{IssueNumber}
1 parent c227921 commit 72aed41

9 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@ labels: bug
66
assignees: fabasoad
77
---
88

9-
#### Describe the bug
9+
## Describe the bug
1010

1111
A clear and concise description of what the bug is.
1212

13-
#### Steps to Reproduce
13+
## Steps to Reproduce
1414

1515
1. Run '...'
1616
2. See error
1717

18-
#### Expected behavior
18+
## Expected behavior
1919

2020
A clear and concise description of what you expected to happen.
2121

22-
#### Actual behavior
22+
## Actual behavior
2323

2424
A clear and concise description of what is happening now.
2525

26-
#### Screenshots
26+
## Screenshots
2727

2828
If applicable, add screenshots to help explain your problem.
2929

30-
#### Technical information (please complete the following information)
30+
## Technical information (please complete the following information)
3131

3232
- OS: [e.g. Windows 10 Enterprise v.1909 (OS Build 18363.720)]
3333
- `setup-cobol-action` version [e.g. 1.0.0]
3434

35-
#### Additional context
35+
## Additional context
3636

3737
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ labels: enhancement
66
assignees: fabasoad
77
---
88

9-
#### Is your feature request related to a problem? Please describe
9+
## Is your feature request related to a problem? Please describe
1010

1111
A clear and concise description of what the problem is. Ex. I'm always frustrated
1212
when [...]
1313

14-
#### Describe the solution you'd like
14+
## Describe the solution you'd like
1515

1616
A clear and concise description of what you want to happen.
1717

18-
#### Describe alternatives you've considered
18+
## Describe alternatives you've considered
1919

2020
A clear and concise description of any alternative solutions or features you've
2121
considered.
2222

23-
#### Additional context
23+
## Additional context
2424

2525
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/linting.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ jobs:
1111
pre-commit:
1212
name: Pre-commit
1313
uses: fabasoad/reusable-workflows/.github/workflows/wf-pre-commit.yml@main
14+
permissions:
15+
contents: read

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ jobs:
1010
github:
1111
name: GitHub
1212
uses: fabasoad/reusable-workflows/.github/workflows/wf-github-release.yml@main
13+
permissions:
14+
contents: write

.github/workflows/security.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ on: # yamllint disable-line rule:truthy
1818
jobs:
1919
sast:
2020
name: SAST
21+
uses: fabasoad/reusable-workflows/.github/workflows/wf-security-sast.yml@main
2122
permissions:
2223
contents: read
2324
security-events: write
24-
uses: fabasoad/reusable-workflows/.github/workflows/wf-security-sast.yml@main
2525
with:
26-
code-scanning: ${{ (inputs.security-type || 'all') == 'all' || inputs.security-type == 'code-scanning' }}
27-
sca: ${{ (inputs.security-type || 'all') == 'all' || inputs.security-type == 'sca' }}
26+
code-scanning: ${{ contains(fromJSON('["all", "code-scanning"]'), github.event.inputs.security-type || 'all') }}
27+
sca: ${{ contains(fromJSON('["all", "sca"]'), github.event.inputs.security-type || 'all') }}

.github/workflows/sync-labels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ jobs:
1111
maintenance:
1212
name: Maintenance
1313
uses: fabasoad/reusable-workflows/.github/workflows/wf-sync-labels.yml@main
14+
permissions:
15+
contents: write
16+
issues: write
17+
pull-requests: write

.github/workflows/update-license.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ jobs:
1010
maintenance:
1111
name: Maintenance
1212
uses: fabasoad/reusable-workflows/.github/workflows/wf-update-license.yml@main
13+
permissions:
14+
contents: write
15+
pull-requests: write

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ repos:
5353
stages: ["pre-push"]
5454
# GitHub Actions
5555
- repo: https://github.com/rhysd/actionlint
56-
rev: v1.7.8
56+
rev: v1.7.9
5757
hooks:
5858
- id: actionlint
5959
args: ["-pyflakes="]

0 commit comments

Comments
 (0)