Skip to content

Test Publishing - erneute Korrekturen Workflows #43

Test Publishing - erneute Korrekturen Workflows

Test Publishing - erneute Korrekturen Workflows #43

Workflow file for this run

name: Release Drafter
on:
push:
branches:
- main
jobs:
dump-contexts:
runs-on: ubuntu-latest
steps:
- name: Dump context "GitHub"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}

Check failure on line 19 in .github/workflows/draft.yml

View workflow run for this annotation

GitHub Actions / Release Drafter

Invalid workflow file

The workflow is not valid. .github/workflows/draft.yml (Line: 19, Col: 18): Unrecognized named-value: 'event'. Located at position 8 within expression: toJson(event)
run: echo "$EVENT"
update-draft:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- name: Release draft action
uses: release-drafter/release-drafter@v6
with:
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}