1
0
Fork 0

Merge pull request #5841 from BenJamesBen/github-workflows

fix(github): Add noop jobs to workflows to prevent spurious notifications
This commit is contained in:
Joost De Cock 2024-02-04 10:09:42 +01:00 committed by GitHub
commit 2d68fc024d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 0 deletions

View file

@ -1,4 +1,12 @@
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
#on:
# push:

View file

@ -1,4 +1,12 @@
name: Test new-design
on: [push]
jobs:
noop:
runs-on: ubuntu-latest
steps:
- run: echo Noop.
#on:
# push:
# branches: