Skip to content

Init Workflow development for the project #6

Init Workflow development for the project

Init Workflow development for the project #6

Workflow file for this run

name: Lokaler Merge Workflow
on:
# push:
# paths:
# - 'backend/**'
pull_request:
jobs:
merge_locally:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Merge PR into target branch locally
with:
TARGET_BRANCH: ${{ github.base_ref }}
run: git merge ${{ TARGET_BRANCH }}

Check failure on line 22 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / Lokaler Merge Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 22, Col: 9): Unexpected value 'run' .github/workflows/pr.yml (Line: 19, Col: 9): Required property is missing: uses
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Run local tests
run: mvn --batch-mode --update-snapshots --no-transfer-progress -f backend/pom.xml verify