Skip to content

Commit 524936c

Browse files
a branch for remote theme
1 parent f83bd20 commit 524936c

File tree

128 files changed

+1848
-172506
lines changed

Some content is hidden

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

128 files changed

+1848
-172506
lines changed

.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/FUNDING.yml

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

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/feature_request.md

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

.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 Architect theme. If you haven't already, please be sure to check out [the contributing guidelines](https://github.com/pages-themes/architect/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 Architect 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/architect/issues), especially those [labeled `help wanted`](https://github.com/pages-themes/architect/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: 3.2.0
14+
bundler-cache: true
15+
- name: build
16+
run: script/bootstrap
17+
- name: test
18+
run: script/cibuild

.github/workflows/publish-gem.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish Gem
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
release:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
- name: Setup Ruby
14+
uses: ruby/setup-ruby@v1
15+
with:
16+
ruby-version: '3.2'
17+
- name: Build gem
18+
run: |
19+
gem build github-pages.gemspec
20+
- name: Publish
21+
run: |
22+
gem push github-pages.gem --key ${{ secrets.PAGES_GEM_PUBLISH }}

0 commit comments

Comments
 (0)