-
-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
226 changed files
with
10,608 additions
and
7,800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Assign reviewers based on assignees | ||
on: | ||
pull_request: | ||
types: [assigned, unassigned] | ||
|
||
jobs: | ||
assignee_to_reviewer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Assignee to Reviewer | ||
uses: pullreminders/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Danger | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: 'Run Danger' | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Danger | ||
uses: danger/[email protected] | ||
with: | ||
args: --failOnErrors --no-publish-check | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# https://github.com/mxcl/xcodebuild | ||
|
||
name: XCode Build | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
platform: | ||
- tvOS | ||
- iOS | ||
xcode: | ||
- ^12 | ||
runs-on: macos-latest | ||
steps: | ||
- use: mxcl/xcodebuild@v1 | ||
with: | ||
xcode: ${{ matrix.xcode }} | ||
platform: ${{ matrix.platform }} | ||
action: build # default = `test` | ||
code-coverage: false # default = `false` | ||
warnings-as-errors: false # default = `false` | ||
configuration: debug # no default, ie. `xcodebuild` decides itself |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# Rebase PR branch when someone comments /rebase | ||
# https://github.com/marketplace/actions/automatic-rebase | ||
name: Automatic Rebase | ||
on: | ||
issue_comment: | ||
types: [created] | ||
name: Automatic Rebase | ||
jobs: | ||
rebase: | ||
name: Rebase | ||
if: contains(github.event.comment.body, '/rebase') | ||
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Checkout the latest code | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | ||
- name: Automatic Rebase | ||
uses: cirrus-actions/rebase@master | ||
uses: cirrus-actions/rebase@1.4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# https://github.com/marketplace/actions/release-notes-preview | ||
name: Release-Notes-Preview | ||
|
||
on: | ||
pull_request: | ||
branches: [develop] | ||
issue_comment: | ||
types: [edited] | ||
|
||
jobs: | ||
preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: | | ||
git fetch --prune --unshallow --tags | ||
- uses: snyk/[email protected] | ||
with: | ||
releaseBranch: master | ||
env: | ||
GITHUB_PR_USERNAME: ${{ github.actor }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: GitHub Action for SwiftLint | ||
uses: norio-nomura/[email protected] | ||
- uses: actions/checkout@v2 | ||
- name: GitHub Action for SwiftLint (Only files changed in the PR) | ||
uses: norio-nomura/[email protected] | ||
env: | ||
DIFF_BASE: ${{ github.base_ref }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,5 @@ report.xml | |
.build | ||
.swiftpm | ||
/bin | ||
.env | ||
/packages-cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.