Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatic rebase #96

Merged
merged 3 commits into from
Sep 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/automatic-rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on: issue_comment
name: Automatic Rebase
jobs:
rebase:
name: Rebase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
language: node_js
dist: trusty
dist: xenial
sudo: required
addons:
apt:
packages:
- libnss3
- google-chrome-beta
- google-chrome-stable
env:
global:
- GOOGLE_CHROME_BINARY="/usr/bin/google-chrome-beta"
- GOOGLE_CHROME_BINARY="/usr/bin/google-chrome-stable"
- PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
node_js:
- "8"
- "10"
- "12"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
Expand Down