Skip to content

Commit 857eb87

Browse files
committed
Update "leap-day" Theme Files
1 parent 68c9a0a commit 857eb87

Some content is hidden

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

59 files changed

+3396
-1
lines changed

docs/.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

docs/.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 Leap Day theme. If you haven't already, please be sure to check out [the contributing guidelines](https://github.com/pages-themes/leap-day/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 Leap Day 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/leap-day/issues), especially those [labeled `help wanted`](https://github.com/pages-themes/leap-day/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)."

docs/.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.

docs/.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

docs/.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

docs/.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

docs/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
Gemfile.lock
4+
*.gem
5+
.jekyll-cache

docs/.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

docs/.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: ruby
2+
cache: bundler
3+
rvm: 2.6
4+
5+
install: script/bootstrap
6+
script: script/cibuild

docs/Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
gemspec

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy