K-Phoen / semver-release-action

GitHub Action to automatically create SemVer compliant releases based on PR labels.
MIT License
85 stars 38 forks source link

add workaround for https://github.com/google/go-github/issues/131 #36

Open joe-bowman opened 4 years ago

joe-bowman commented 4 years ago

Add workaround to fix the organisation unmarshalling error logged here: https://github.com/google/go-github/issues/131

Fixes #35

cxn-mkalinovits commented 4 years ago

Please fix this. I have the same issue.

John118118 commented 3 years ago

@K-Phoen can this be merged, please?

cx-IliyaY commented 2 years ago

What about this issue? i have the same problem

fabio-sv commented 11 months ago

As a workaround, change the triggers for the workflow to:

on:
  pull_request:
    branches:
      - main
    types:
      - closed

And add the following check to your jobs:

if: github.event.pull_request.merged == true