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.
1 parent 09f0522 commit 8163de9Copy full SHA for 8163de9
.github/workflows/test.yml
@@ -2,21 +2,23 @@
2
name: Validate CSV
3
on:
4
pull_request:
5
- branches:
6
- - main
+ types:
+ - labeled
7
+ - unlabeled
8
push:
9
branches:
10
- main
11
permissions:
12
contents: write
13
+ pull-requests: write
14
jobs:
15
test-build:
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v4
19
with:
- fetch-depth: 0
- ref: ${{ github.head_ref }}
20
+ ref: ${{ github.event.pull_request.head.ref }}
21
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
22
- uses: actions/setup-python@v5
23
24
python-version: "3.12"
0 commit comments