Skip to content

Weitere workflow Korrekturen - add dumper #33

Weitere workflow Korrekturen - add dumper

Weitere workflow Korrekturen - add dumper #33

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) }

Check failure on line 15 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: 15, Col: 27): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found. .github/workflows/draft.yml (Line: 19, Col: 25): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
run: echo "$GITHUB_CONTEXT"
- name: Dump context "vars"
env:
VARS_CONTEXT: ${{ toJson(vars) }
run: echo "$VARS_CONTEXT"
- name: Dump context "Job"
env:
JOB_CONTEXT: ${{ toJson(job) }
run: echo "$JOB_CONTEXT"
update-draft:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Dump context "Job"
env:
JOB_CONTEXT: ${{ toJson(job) }
run: echo "$JOB_CONTEXT"
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v6
with:
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}