We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Pull Request CI (Snapshot)
1 parent d983ff9 commit bd07108Copy full SHA for bd07108
.github/workflows/pull_request_ci.yml
@@ -0,0 +1,25 @@
1
+name: Pull Request CI (Snapshot)
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - synchronize
8
+ - reopened
9
10
+jobs:
11
+ build:
12
+ permissions:
13
+ contents: read
14
+ uses: ./.github/workflows/build.yml
15
16
+ event_file:
17
+ needs: build
18
+ name: "Event File"
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Upload
22
+ uses: actions/upload-artifact@v4
23
+ with:
24
+ name: Event File
25
+ path: ${{ github.event_path }}
.github/workflows/test_results.yml
@@ -4,6 +4,7 @@ on:
workflow_run:
workflows:
- "Branch CI (Snapshot)"
+ - "Pull Request CI (Snapshot)"
types:
- completed
0 commit comments