Skip to content

Commit 5c6df66

Browse files
committed
Merge branch 'master' into production
2 parents 0da2f80 + 3f9f5c7 commit 5c6df66

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1391
-1262
lines changed

.github/CONTRIBUTING.md

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

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@ name: Bug Report
33
about: Create a report to help us improve
44
---
55

6-
**NOTE:** Before you start, the following should be completed.
7-
8-
- Read [Wiki][wiki] to understand the usage and the correct effect of functional design.
9-
- Make sure no [similar issue(including closed ones)][issues] exists.
10-
- Make sure the bug is found in the latest code of the `master` branch.
11-
12-
[wiki]: https://github.com/cotes2020/jekyll-theme-chirpy/wiki
13-
[issues]: https://github.com/cotes2020/jekyll-theme-chirpy/issues?q=is%3Aissue
6+
> **Tips**: Remember, contributions to this repository should follow the [contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
147
158
## Describe the bug
169

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask the community for help
4+
url: https://github.com/cotes2020/jekyll-theme-chirpy/discussions
5+
about: Please ask and answer questions here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,7 @@ about: Suggest an idea for this project
44
labels: enhancement
55
---
66

7-
**NOTE:** Before you start, the following should be completed.
8-
9-
- Read [Wiki][wiki] to understand the usage and the correct effect of functional design.
10-
- Make sure no [similar issue(including closed ones)][issues] exists.
11-
- Make sure the request is based on the latest code in the `master` branch.
12-
13-
[wiki]: https://github.com/cotes2020/jekyll-theme-chirpy/wiki
14-
[issues]: https://github.com/cotes2020/jekyll-theme-chirpy/issues?q=is%3Aissue
7+
> **Tips**: Remember, contributions to this repository should follow the [contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
158
169
## Is your feature request related to a problem? Please describe
1710

.github/ISSUE_TEMPLATE/help_wanted.md

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

.github/ISSUE_TEMPLATE/question.md

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

.github/SECURITY.md

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

.github/dependabot.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "bundler"
4+
directory: "/"
5+
versioning-strategy: increase
6+
groups:
7+
bundler:
8+
dependency-type: "production"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "npm"
12+
directory: "/"
13+
versioning-strategy: increase
14+
groups:
15+
npm:
16+
dependency-type: "development"
17+
schedule:
18+
interval: "weekly"
19+
- package-ecosystem: "github-actions"
20+
directory: "/"
21+
groups:
22+
gh-actions:
23+
update-types:
24+
- "major"
25+
schedule:
26+
interval: "weekly"

.github/workflows/cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: CD
22
on:
33
push:
4-
branches: [production, docs]
4+
tags:
5+
- "v[0-9]+.[0-9]+.[0-9]+"
6+
branches:
7+
- docs
58

69
jobs:
710
launch:

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- ".github/**"
99
- "!.github/workflows/ci.yml"
1010
- ".gitignore"
11+
- "docs/**"
1112
- "README.md"
1213
- "LICENSE"
1314
pull_request:
@@ -24,7 +25,7 @@ jobs:
2425

2526
steps:
2627
- name: Checkout
27-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2829
with:
2930
fetch-depth: 0 # for posts's lastmod
3031

0 commit comments

Comments
 (0)