kaskadi / template-kaskadi-element

a template for building kaskadi's custom elements
MIT License
0 stars 0 forks source link

[Actions] Fix init conditional run #15

Closed alexlemaire closed 4 years ago

alexlemaire commented 4 years ago

Issue discovered while creating a new branch release/v1.0.0 for template-kaskadi-element to test publish action and seeing init being run

The init action was defined as follow:

on:
  create:
    branches:
      - master

But the branches field is only accessible for push and pull_request webhooks (see here)

Fixed the issue by:

alexlemaire commented 4 years ago

Fixed