Skip to content

Commit ae1aee7

Browse files
committed
Merge branch 'master' into upstream_master
2 parents 0a169b5 + 4148fda commit ae1aee7

Some content is hidden

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

49 files changed

+1184
-704
lines changed

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,13 @@ spec/fixtures/sample.txt text eol=lf
1515

1616
# Windows bash scripts are also Unix LF endings
1717
*.sh eol=lf
18+
19+
# The script executables should be LF so they can be edited on Windows
20+
script/bootstrap text eol=lf
21+
script/build text eol=lf
22+
script/cibuild text eol=lf
23+
script/clean text eol=lf
24+
script/lint text eol=lf
25+
script/postprocess-junit-results text eol=lf
26+
script/test text eol=lf
27+
script/verify-snapshot-script text eol=lf

.github/pull.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: "1"
2+
rules: # Array of rules
3+
- base: upstream_master # Required. Target branch
4+
upstream: atom:master # Required. Must be in the same fork network.
5+
mergeMethod: hardreset # Optional, one of [none, merge, squash, rebase, hardreset], Default: none.
6+
mergeUnstable: true # Optional, merge pull request even when the mergeable_state is not clean. Default: false
7+
label: ":arrow_heading_down: pull upstream" # Optional

.github/workflows/rebase.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
issue_comment:
3+
types: [created]
4+
name: Automatic Rebase
5+
jobs:
6+
rebase:
7+
name: Rebase
8+
if: github.event.issue.pull_request != '' && github.event.comment.author_association == 'MEMBER' && contains(github.event.comment.body, '/rebase')
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout the latest code
12+
uses: actions/checkout@v2
13+
with:
14+
fetch-depth: 0
15+
- name: Automatic Rebase
16+
uses: cirrus-actions/rebase@1.3.1
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)