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

chore: use pull_request_target event to allow forks to run jobs. #96

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# we set `sdp-backend` as code owners
# require approval from 1 member of `sdp-backend` team
@stellar/sdp-backend
6 changes: 5 additions & 1 deletion .github/workflows/anchor_platform_integration_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ on:
- "release/**"
- "releases/**"
- "hotfix/**"
pull_request:
pull_request_target:
types: [opened, synchronize, reopened]
workflow_call: # allows this workflow to be called from another workflow

permissions:
contents: read

jobs:
anchor-integration:
runs-on: ubuntu-latest
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ on:
- "release/**"
- "releases/**"
- "hotfix/**"
pull_request:
pull_request_target:
types: [opened, synchronize, reopened]
workflow_call: # allows this workflow to be called from another workflow

permissions:
contents: read

env:
USER_EMAIL: "[email protected]"
USER_PASSWORD: "mockPassword123!"
Expand Down