From 7bf9e3ad3602ff3c50765fe8cff2845824af4193 Mon Sep 17 00:00:00 2001 From: Ivan Dlugos Date: Fri, 16 Sep 2022 11:29:53 +0200 Subject: [PATCH] chore: fix danger output --- .github/workflows/danger.yml | 4 +++- .github/workflows/versioning.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 359e91f..e4f29e4 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -4,11 +4,13 @@ on: outputs: outcome: description: Whether the Danger run finished successfully. Possible values are success, failure, cancelled, or skipped. - value: ${{ jobs.danger.steps.danger.outcome }} + value: ${{ jobs.danger.outputs.outcome }} jobs: danger: runs-on: ubuntu-latest + outputs: + outcome: ${{ steps.danger.outcome }} steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index ba8f779..41f86d4 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -1,4 +1,4 @@ -name: Keep the major version tags up-to-date +name: Sync tags with releases on: release: