Weitere workflow Korrekturen - add dumper #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Release DrafterInvalid workflow file
|
||
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 }} |