Skip to content

Commit

Permalink
Add Pull Request CI (Snapshot) to support PRs from external contrib…
Browse files Browse the repository at this point in the history
…utors
  • Loading branch information
evg-tso committed Nov 25, 2024
1 parent d983ff9 commit bd07108
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pull_request_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Pull Request CI (Snapshot)

on:
pull_request:
types:
- opened
- synchronize
- reopened

jobs:
build:
permissions:
contents: read
uses: ./.github/workflows/build.yml

event_file:
needs: build
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
1 change: 1 addition & 0 deletions .github/workflows/test_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
workflow_run:
workflows:
- "Branch CI (Snapshot)"
- "Pull Request CI (Snapshot)"
types:
- completed

Expand Down

0 comments on commit bd07108

Please sign in to comment.