Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(other): add event trigger pull_request_target to test workflows #1254

Merged
merged 3 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.build.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:build test code"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.build.docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:build test docker"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.build.docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:build test docs"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.build.storybook.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:build test storybook"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.lint.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:lint code with defined linters"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin.test.unit.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "admin:test:unit test code with defined suites"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend.test.build.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "backend:test:build test code"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend.test.build.docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "backend:test:build test docker"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend.test.build.docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "backend:test:build test docs"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend.test.lint.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "backend:test:lint code with defined linters"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "backend:test:unit test code with defined suites"
env:
DATABASE_URL: mysql://root:@localhost:3306/dreammall.earth

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.run.tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: e2e:test:all test the application end to end

on: push
on: [push,pull_request_target]

jobs:
e2e-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.test.build.docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: e2e:test:build test docs

on: push
on: [push,pull_request_target]

jobs:
files-changed:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.test.lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: e2e:test:lint code with defined linters

on: push
on: [push,pull_request_target]

jobs:
files-changed:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.build.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:build test code"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.build.docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:build test docker"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.build.docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:build test docs"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.build.storybook.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:build test storybook"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.lint.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:lint code with defined linters"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.test.unit.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "frontend:test:unit test code with defined suites"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.build.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:build test code"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.build.docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:build test docker"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.build.docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:build test docs"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.build.storybook.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:build test storybook"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.lint.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:lint code with defined linters"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presenter.test.unit.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "presenter:test:unit test code with defined suites"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "dreammall:test:code with defined tests & linters"

on: push
on: [push,pull_request_target]

jobs:
# only (but most important) job from this workflow required for pull requests
Expand Down