Skip to content

Commit a600611

Browse files
committed
style lint
1 parent 9a2d703 commit a600611

File tree

3 files changed

+43
-42
lines changed

3 files changed

+43
-42
lines changed

.github/pull_request_template.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
11
<!-- Please refer to our contributing docs for any questions on submitting a pull request -->
22
<!-- Issues are required for both bug fixes and features. -->
3+
34
Resolves #ISSUE_NUMBER
45

5-
----
6+
---
67

78
### Before the change?
9+
810
<!-- Please describe the current behavior that you are modifying. -->
911

10-
*
12+
-
1113

1214
### After the change?
15+
1316
<!-- Please describe the behavior or changes that are being added by this PR. -->
1417

15-
*
18+
-
1619

1720
### Pull request checklist
21+
1822
- [ ] Tests for the changes have been added (for bug fixes / features)
1923
- [ ] Docs have been reviewed and added / updated if needed (for bug fixes / features)
2024

2125
### Does this introduce a breaking change?
26+
2227
<!-- If this introduces a breaking change make sure to note it here any what the impact might be -->
2328

2429
Please see our docs on [breaking changes](https://github.com/octokit/.github/blob/main/community/breaking_changes.md) to help!
2530

2631
- [ ] Yes
2732
- [ ] No
2833

29-
----
30-
34+
---

.github/renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"github>octokit/.github"
4-
]
2+
"extends": ["github>octokit/.github"]
53
}

.github/workflows/codeql.yml

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -8,44 +8,43 @@ on:
88
branches-ignore:
99
- "dependabot/**"
1010
schedule:
11-
- cron: '0 19 * * 0'
11+
- cron: "0 19 * * 0"
1212

1313
jobs:
1414
CodeQL-Build:
15-
1615
# CodeQL runs on ubuntu-latest and windows-latest
1716
runs-on: ubuntu-latest
1817

1918
steps:
20-
- name: Checkout repository
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
22-
with:
23-
# We must fetch at least the immediate parents so that if this is
24-
# a pull request then we can checkout the head.
25-
fetch-depth: 2
26-
27-
# Initializes the CodeQL tools for scanning.
28-
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
30-
# Override language selection by uncommenting this and choosing your languages
31-
# with:
32-
# languages: go, javascript, csharp, python, cpp, java
33-
34-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
35-
# If this step fails, then you should remove it and run the build manually (see below)
36-
- name: Autobuild
37-
uses: github/codeql-action/autobuild@v3
38-
39-
# ℹ️ Command-line programs to run using the OS shell.
40-
# 📚 https://git.io/JvXDl
41-
42-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
43-
# and modify them (or add more) to build your code if your project
44-
# uses a compiled language
45-
46-
#- run: |
47-
# make bootstrap
48-
# make release
49-
50-
- name: Perform CodeQL Analysis
51-
uses: github/codeql-action/analyze@v3
19+
- name: Checkout repository
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21+
with:
22+
# We must fetch at least the immediate parents so that if this is
23+
# a pull request then we can checkout the head.
24+
fetch-depth: 2
25+
26+
# Initializes the CodeQL tools for scanning.
27+
- name: Initialize CodeQL
28+
uses: github/codeql-action/init@v3
29+
# Override language selection by uncommenting this and choosing your languages
30+
# with:
31+
# languages: go, javascript, csharp, python, cpp, java
32+
33+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
34+
# If this step fails, then you should remove it and run the build manually (see below)
35+
- name: Autobuild
36+
uses: github/codeql-action/autobuild@v3
37+
38+
# ℹ️ Command-line programs to run using the OS shell.
39+
# 📚 https://git.io/JvXDl
40+
41+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
42+
# and modify them (or add more) to build your code if your project
43+
# uses a compiled language
44+
45+
#- run: |
46+
# make bootstrap
47+
# make release
48+
49+
- name: Perform CodeQL Analysis
50+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)