Responsive home and account pages (#969) #152
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
name: Staging sync | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
sync-branches: | |
name: Staging sync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Opening pull request | |
id: pull | |
uses: tretuna/sync-branches@main | |
with: | |
GITHUB_TOKEN: ${{secrets.GH_TOKEN}} | |
FROM_BRANCH: "master" | |
TO_BRANCH: "staging" | |
PULL_REQUEST_AUTO_MERGE_METHOD: "squash" |