Test Publishing - erneute Korrekturen Workflows #43
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) }} | ||
run: echo "$GITHUB_CONTEXT" | ||
- name: Dump context "Event" | ||
env: | ||
EVENT: ${{ toJson(event) }} | ||
Check failure on line 19 in .github/workflows/draft.yml GitHub Actions / Release DrafterInvalid workflow file
|
||
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 }} |