diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index 6197423..b4e713d 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -1,7 +1,10 @@ +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions # This workflow will protect the main branch by testing and linting new PRs and commits name: CI Dev +# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push +# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request on: push: branches: diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 1f04529..26adcb8 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -1,7 +1,10 @@ +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions # This workflow will protect the main branch by testing and linting new PRs and commits name: CI Main +# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push +# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request on: push: branches: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b9eaaa8..763ff39 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,10 +1,12 @@ +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions # This workflow will publish any new release to the npmjs registry name: Publish +# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release on: release: - types: [created] + types: [released] jobs: publish: