send pattern_id
along with every pattern stop
#930
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: Commit Checks | |
on: [push] | |
jobs: | |
push-checks: | |
uses: ./.github/workflows/node-ci.yml | |
with: | |
# Run e2e tests on pushes to dev and master. | |
e2e: ${{ github.ref_name == 'dev' || github.ref_name == 'master' }} | |
secrets: inherit |