Skip to content

Commit 2f73e5b

Browse files
authored
put all commits from upstream in here (#7)
1 parent 1f6fc27 commit 2f73e5b

File tree

102 files changed

+7908
-2749
lines changed

Some content is hidden

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

102 files changed

+7908
-2749
lines changed

.github/FUNDING.yml

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

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body:
1919
- type: textarea
2020
id: environment
2121
attributes:
22-
label: What happened?
22+
label: Theme version and system environment
2323
description: |
2424
Please include theme version, Jekyll version, public git repository, whether
2525
you are hosting with GitHub Pages, and the operating system you tested with.
@@ -33,8 +33,21 @@ body:
3333
- Ruby gem or remote theme version:
3434
- Jekyll version:
3535
- Git repository URL:
36-
- Hosted on GitHub Pages (if yes provide URL to site):
36+
- URL to the page with the problem:
3737
- Operating system:
38+
- Browser version:
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: what-happened
44+
attributes:
45+
label: What happened?
46+
description: |
47+
Describe the problem **in detail**. For example:
48+
49+
- What is missing?
50+
- What error do you see? Attach the error log if available.
3851
validations:
3952
required: true
4053

@@ -78,4 +91,4 @@ body:
7891
Please provide a code repository, gist, code snippet, sample files,
7992
screenshots, or anything else you think will aid in reproducing the issue.
8093
validations:
81-
required: false
94+
required: false

.github/ISSUE_TEMPLATE/documentation.md

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

.github/workflows/bad-pr.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@ on:
44
pull_request_target:
55
types: [opened, reopened]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
close-pr:
12+
permissions:
13+
pull-requests: write
914
runs-on: ubuntu-latest
1015
if: "contains(github.event.pull_request.body, 'by deleting this comment block') || github.event.pull_request.body == ''"
1116
steps:
1217
- uses: actions-ecosystem/action-add-labels@v1
1318
with:
1419
labels: 'Type: Invalid'
20+
- uses: actions-ecosystem/action-add-labels@v1
21+
with:
22+
labels: 'Type: Spam'
1523
- uses: superbrothers/close-pull-request@v3
1624
with:
1725
# Optional. Post an issue comment just before closing a pull request.

.github/workflows/build.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch: {}
8+
repository_dispatch: {}
9+
10+
jobs:
11+
build:
12+
if: github.repository == 'mmistakes/minimal-mistakes'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: '3.2'
22+
- name: Setup cache for Bundler
23+
id: cache
24+
uses: actions/cache@v4
25+
with:
26+
path: |
27+
docs/Gemfile.lock
28+
docs/vendor/bundle
29+
key: ${{ runner.os }}-bundler-${{ hashFiles('docs/Gemfile') }}
30+
restore-keys: |
31+
${{ runner.os }}-bundler-
32+
33+
- name: Install - Bundler
34+
env:
35+
MAKE: make -j2
36+
working-directory: docs/
37+
run: |
38+
bundle config set path vendor/bundle
39+
bundle install --jobs=4 --retry=3
40+
bundle clean
41+
42+
- name: Update Algolia index
43+
working-directory: docs/
44+
run: bundle exec jekyll algolia push
45+
env:
46+
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
47+
continue-on-error: true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
*~
33
*.sw[p_]
44

5+
# IntelliJ IDEA
6+
*.idea
7+
58
# Sublime Text
69
*.sublime-project
710
*.sublime-workspace

0 commit comments

Comments
 (0)