Skip to content

feat: one file build #4

feat: one file build

feat: one file build #4

Workflow file for this run

name: Update Base Branch Command
on:
issue_comment:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
if: >-
github.event.issue.pull_request != '' &&
(
contains(github.event.comment.body, '/update')
)
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history so we can merge branches
- name: Fetch All Branches
run: git fetch --all
- name: Checkout PR
run: git checkout ${{ refs/pull/${{ github.event.issue.number }}/head }}

Check failure on line 22 in .github/workflows/merge-next.yml

View workflow run for this annotation

GitHub Actions / Update Base Branch Command

Invalid workflow file

The workflow is not valid. .github/workflows/merge-next.yml (Line: 22, Col: 14): Unexpected symbol: 'refs/pull/${{'. Located at position 1 within expression: refs/pull/${{ github.event.issue.number
- name: Merge From Next
run: git merge origin/next --strategy-option=theirs
- name: Push Changes
run: git push