Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restrict push workflows to master (fix)
Browse files Browse the repository at this point in the history
Judahmeek committed Nov 13, 2023
1 parent 16cfc19 commit 6f7269a
Showing 4 changed files with 26 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/lint-js-and-ruby.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Lint JS and Ruby

on: [push, pull_request]

on:
push:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,9 @@ on:
push:
branches:
- 'master'
pull_request
pull_request:
paths:
- '**.*'

jobs:
build-dummy-app-webpack-test-bundles:
9 changes: 8 additions & 1 deletion .github/workflows/package-js-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: JS unit tests for Renderer package

on: [push, pull_request]

on:
push:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:
8 changes: 7 additions & 1 deletion .github/workflows/rspec-package-specs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Rspec test for gem

on: [push, pull_request]
on:
push:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:

0 comments on commit 6f7269a

Please sign in to comment.