Merge pull request #5841 from BenJamesBen/github-workflows
fix(github): Add noop jobs to workflows to prevent spurious notifications
This commit is contained in:
commit
2d68fc024d
2 changed files with 16 additions and 0 deletions
8
.github/workflows/playwright.yml
vendored
8
.github/workflows/playwright.yml
vendored
|
@ -1,4 +1,12 @@
|
||||||
name: Playwright Tests
|
name: Playwright Tests
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
noop:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo Noop.
|
||||||
|
|
||||||
# While it's nice to test e2e tests, it's not all that useful to run them on alpha code
|
# While it's nice to test e2e tests, it's not all that useful to run them on alpha code
|
||||||
#on:
|
#on:
|
||||||
# push:
|
# push:
|
||||||
|
|
8
.github/workflows/tests.new-design.yml
vendored
8
.github/workflows/tests.new-design.yml
vendored
|
@ -1,4 +1,12 @@
|
||||||
name: Test new-design
|
name: Test new-design
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
noop:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo Noop.
|
||||||
|
|
||||||
#on:
|
#on:
|
||||||
# push:
|
# push:
|
||||||
# branches:
|
# branches:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue