chore: temporarily disables danger #431
Workflow file for this run
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
# We are disabling Danger temporarily until we get a fix to the error | |
# | |
# ERROR: Failed to parse JSON: valueNotFound(Swift.Dictionary<Swift.String, Any>, Swift.DecodingError.Context(codingPath: [CodingKeys(stringValue: "danger", intValue: nil), CodingKeys(stringValue: "github", intValue: nil), CodingKeys(stringValue: "reviews", intValue: nil), _JSONKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "user", intValue: nil)], debugDescription: "Cannot get keyed decoding container -- found null value instead", underlyingError: nil)) | |
# ERROR: Dangerfile eval failed at Dangerfile.swift | |
# | |
# In short, if a user that is deleted left a comment in a PR, the author becomes null | |
# which breaks the JSON parsing | |
# name: "Danger Swift" | |
# on: | |
# pull_request: | |
# types: [ opened, synchronize, edited ] | |
# jobs: | |
# danger-scan: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Danger | |
# uses: danger/[email protected] | |
# with: | |
# args: --failOnErrors --no-publish-check | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |