System.NotSupportedException erialization and deserialization of 'System.Type' instances are not supported. Path: $.ClassInfo.Members.MemberType. #10
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: Notify subscribers on any Issue event | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
notify: | |
runs-on: [ubuntu-latest] | |
name: A job to send a notification | |
steps: | |
- name: Format message | |
id: format | |
uses: DevExpress/[email protected] | |
- name: Send message | |
run: "curl --silent --show-error --fail -X POST ${{secrets.ISSUE_WATCHER_ADDRESS}} -H 'Content-Type: application/json' -d '${{ steps.format.outputs.json }}'" |