Skip to content

Implementing GitHub Actions Pipeline #6

Implementing GitHub Actions Pipeline

Implementing GitHub Actions Pipeline #6

Workflow file for this run

# © 2024. TU Dortmund University,
# Institute of Energy Systems, Energy Efficiency and Energy Economics,
# Research group Distribution grid planning and operation
#
name: CI
on:
push:
branches:
- main
- dev
- 'feature/*'
- 'hotfix/*'
- 'release/*'
pull_request:
branches:
- main
- dev
jobs:
checkout_code:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Check if it's a pull request
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Show current Branch
run:
echo "Current branch: ${{ github.event.pull_request.head.ref || github.ref }}"

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 34, Col: 11): A mapping was not expected