Skip to content

Commit

Permalink
ci: run github actions on pull requests from forks (#1335)
Browse files Browse the repository at this point in the history
This may introduce duplicate builds for PRs from branches within the same repo.  For extended discussion on this issue, see #1315 

Closes #1308
  • Loading branch information
alxndrsn authored Dec 10, 2024
1 parent c9a3b65 commit 7bb0360
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/oidc-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: OIDC e2e tests

on: push
on:
push:
pull_request:

env:
DEBUG: pw:api
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/oidc-integration.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: OIDC integration tests

on: push
on:
push:
pull_request:

jobs:
oidc-integration-test:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/s3-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: S3 E2E Tests

on: push
on:
push:
pull_request:

jobs:
s3-e2e:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/standard-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Standard E2E Tests

on: push
on:
push:
pull_request:

env:
LOG_LEVEL: DEBUG
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/standard-suite.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Full Standard Test Suite

on: push
on:
push:
pull_request:

jobs:
standard-tests:
Expand Down

0 comments on commit 7bb0360

Please sign in to comment.