Skip to content

Commit ed5e9ca

Browse files
committed
conflict resolve
2 parents 182444f + 46241b6 commit ed5e9ca

File tree

262 files changed

+2900
-8904
lines changed

Some content is hidden

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

262 files changed

+2900
-8904
lines changed

.env.example

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
API_USER=
2-
API_PASS=
1+
GITHUB_API_TOKEN=

.github/ISSUE_TEMPLATE.md

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

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Problems/questions/bugs about Git program
4+
url: https://git-scm.com/community
5+
about: Start a discussion on the community mailing list.
6+
7+
- name: Problems about Git for Windows program
8+
url: https://github.com/git-for-windows/git/issues
9+
about: Report problems with the Git for Windows program.
10+
11+
- name: Git documentation (man/help pages)
12+
url: https://git-scm.com/community
13+
about: >
14+
The Git documentation under https://git-scm.com/docs is imported
15+
from the Git project itself. Any content problems or suggestions
16+
should be reported there.
17+
18+
- name: Pro Git 2 book content
19+
url: https://github.com/progit/progit2/issues
20+
about: Report problems with the ProGit 2 book content.

.github/ISSUE_TEMPLATE/downloads.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: Downloads on https://git-scm.com not working
3+
description: If you are experiencing problems downloading Git from https://git-scm.com/downloads.
4+
labels: [bug]
5+
6+
body:
7+
# Please follow the instructions below.
8+
# An issue properly explained is solved much faster!
9+
- type: textarea
10+
attributes:
11+
# Provide a brief summary of the issue in the issue title.
12+
label: Which download is failing?
13+
placeholder: Tell us in which page and version is the download broken.
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Problem
19+
placeholder: Explain the problem clearly.
20+
validations:
21+
required: true
22+
- type: input
23+
attributes:
24+
label: Operating system and browser
25+
description: Which operating system and browser are you using?
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
# Provide a detailed list of steps.
31+
# In the rare cases where this is not possible, we will accept a detailed set of instructions.
32+
label: Steps to reproduce
33+
placeholder: |
34+
1.
35+
2.
36+
3.
37+
4.
38+
validations:
39+
required: true
40+
- type: textarea
41+
attributes:
42+
label: Other details
43+
placeholder: Include as many relevant details you may find relevant.
44+
render: shell

.github/ISSUE_TEMPLATE/ui.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: "git-scm user interface broken"
3+
about: "git-scm.com user interface is not working"
4+
---
5+
6+
<!---
7+
Please follow the instructions below.
8+
An issue properly explained is solved much faster!
9+
10+
Only report problems with the git-scm.com site's JavaScript, CSS or content that doesn't seem to be doing its job correctly!
11+
-->
12+
13+
<!--- Provide a brief summary of the issue in the issue title -->
14+
15+
### URL for broken page
16+
17+
<!--- Give us the link to the broken page -->
18+
19+
### Problem
20+
21+
<!--- Explain the problem clearly -->
22+
23+
### Operating system and browser
24+
25+
<!--- Which operating system and browser are you using? -->
26+
27+
### Steps to reproduce
28+
29+
<!--- Provide a detailed list of steps. -->
30+
<!--- In the rare cases where this is not possible, we will accept a detailed set of instructions. -->
31+
32+
### Other details
33+
34+
<!--- Include as many relevant details you may find relevant -->

.github/pull_request_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Changes
2+
3+
<!-- List the changes this PR makes. -->
4+
5+
-
6+
7+
## Context
8+
9+
<!-- Explain why you're making these changes. -->

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
on: pull_request
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
10+
- name: ruby setup
11+
uses: ruby/setup-ruby@v1
12+
with:
13+
bundler-cache: true
14+
15+
- name: rails setup
16+
run: bundle exec rake db:create db:schema:load
17+
18+
- name: rubocop
19+
run: bundle exec rubocop -P
20+
21+
- name: rspec
22+
run: bundle exec rspec

.rubocop.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
require:
2+
- rubocop-rails
3+
4+
inherit_gem:
5+
rubocop-github:
6+
- config/default.yml
7+
- config/rails.yml
8+
9+
AllCops:
10+
TargetRubyVersion: 2.7
11+
12+
Performance:
13+
enabled: true
14+
15+
Style/FrozenStringLiteralComment:
16+
Exclude:
17+
- db/schema.rb
18+
19+
Rails/HelperInstanceVariable:
20+
Enabled: false
21+
22+
Rails/TimeZone:
23+
Enabled: false
24+
25+
GitHub/InsecureHashAlgorithm:
26+
Enabled: false

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.2
1+
2.7.3

.travis.yml

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

0 commit comments

Comments
 (0)