diff --git a/.github/workflows/pull_request_ci.yml b/.github/workflows/pull_request_ci.yml new file mode 100644 index 0000000..da6a23e --- /dev/null +++ b/.github/workflows/pull_request_ci.yml @@ -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 }} diff --git a/.github/workflows/test_results.yml b/.github/workflows/test_results.yml index 5f2f9ed..768b5f0 100644 --- a/.github/workflows/test_results.yml +++ b/.github/workflows/test_results.yml @@ -4,6 +4,7 @@ on: workflow_run: workflows: - "Branch CI (Snapshot)" + - "Pull Request CI (Snapshot)" types: - completed