Skip to content

Commit 39afd58

Browse files
committed
changed to dinky theme
1 parent a436d93 commit 39afd58

File tree

411 files changed

+14824
-22803
lines changed

Some content is hidden

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

411 files changed

+14824
-22803
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Require maintainer's :+1: for changes to the .github/ repo-config files
2+
# mainly due to https://github.com/probot/settings privilege escalation
3+
.github/* @pages-themes/maintainers

.github/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Behaviorbot config. See https://github.com/behaviorbot/ for more information.
2+
# Note: Please Don't edit this file directly.
3+
# Edit https://github.com/pages-themes/maintenance-scripts instead.
4+
5+
# Configuration for update-docs - https://github.com/behaviorbot/update-docs
6+
updateDocsComment: "Thanks for the pull request! If you are making any changes to the user-facing functionality, please be sure to update the documentation in the `README` or `docs/` folder alongside your change. :heart:"
7+
8+
# Configuration for request-info - https://github.com/behaviorbot/request-info
9+
requestInfoReplyComment: Thanks for this. Do you mind providing a bit more information about what problem you're trying to solve?
10+
requestInfoLabelToAdd: more-information-needed
11+
12+
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome
13+
#newIssueWelcomeComment: >
14+
# Welcome!
15+
16+
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome
17+
newPRWelcomeComment: Welcome! Congrats on your first pull request to the Dinky theme. If you haven't already, please be sure to check out [the contributing guidelines](https://github.com/pages-themes/dinky/blob/master/docs/CONTRIBUTING.md).
18+
19+
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge
20+
firstPRMergeComment: "Congrats on getting your first pull request to the Dinky theme merged! Without amazing humans like you submitting pull requests, we couldn’t run this project. You rock! :tada:<br /><br />If you're interested in tackling another bug or feature, take a look at [the open issues](https://github.com/pages-themes/dinky/issues), especially those [labeled `help wanted`](https://github.com/pages-themes/dinky/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)."

.github/no-response.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Configuration for probot-no-response - https://github.com/probot/no-response
2+
3+
# Number of days of inactivity before an Issue is closed for lack of response
4+
daysUntilClose: 14
5+
# Label requiring a response
6+
responseRequiredLabel: more-information-needed
7+
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
8+
closeComment: >
9+
This issue has been automatically closed because there has been no response
10+
to our request for more information from the original author. With only the
11+
information that is currently in the issue, we don't have enough information
12+
to take action. Please reach out if you have or find the answers we need so
13+
that we can investigate further.

.github/settings.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Repository settings set via https://github.com/probot/settings
2+
3+
repository:
4+
has_issues: true
5+
has_wiki: false
6+
has_projects: false
7+
has_downloads: false
8+
9+
labels:
10+
- name: help wanted
11+
oldname: help-wanted
12+
color: 0e8a16
13+
- name: more-information-needed
14+
color: d93f0b
15+
- name: bug
16+
color: b60205
17+
- name: feature
18+
color: 1d76db
19+
- name: good first issue
20+
color: "5319e7"
21+
22+
# Not currently implemented by probot/settings, but manually implemented in script/deploy
23+
branch_protection:
24+
restrictions: null
25+
enforce_admins: false
26+
required_status_checks:
27+
strict: true
28+
contexts:
29+
- "script/cibuild" # GitHub Actions CI workflow
30+
required_pull_request_reviews:
31+
require_code_owner_reviews: true

.github/stale.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 60
5+
6+
# Number of days of inactivity before a stale Issue or Pull Request is closed
7+
daysUntilClose: 7
8+
9+
# Issues or Pull Requests with these labels will never be considered stale
10+
exemptLabels:
11+
- pinned
12+
- security
13+
14+
# Label to use when marking as stale
15+
staleLabel: wontfix
16+
17+
# Comment to post when marking as stale. Set to `false` to disable
18+
markComment: >
19+
This issue has been automatically marked as stale because it has not had
20+
recent activity. It will be closed if no further activity occurs. Thank you
21+
for your contributions.
22+
23+
# Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable
24+
closeComment: false
25+
26+
# Limit to only `issues` or `pulls`
27+
# only: issues

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
pull_request:
4+
types: [opened, synchronize]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
name: script/cibuild
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: ruby/setup-ruby@v1
12+
with:
13+
ruby-version: 2.7
14+
bundler-cache: true
15+
- name: build
16+
run: script/bootstrap
17+
- name: test
18+
run: script/cibuild

.github/workflows/scrape_talks.yml

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

.gitignore

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
1-
# Ignore the contents of the _site directory and other cache directories
2-
_site/
3-
.sass-cache/
4-
desktop.ini
5-
6-
# Ignore the directory for local files during development
7-
local/
8-
9-
# Ignore the Gemfile that is generated
1+
_site
2+
.sass-cache
103
Gemfile.lock
11-
12-
# Ingore files created by npm
13-
node_modules
14-
package-lock.json
15-
16-
testbook/
4+
*.gem
5+
.jekyll-cache

.rubocop.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
inherit_gem:
2+
rubocop-github:
3+
- config/default.yml
4+
5+
AllCops:
6+
Exclude:
7+
- _site/**/*
8+
- vendor/**/*
9+
10+
Layout/LineLength:
11+
Enabled: false

0 commit comments

Comments
 (0)