We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0438a commit e2d37d6Copy full SHA for e2d37d6
.github/workflows/lint-pr.yml
@@ -0,0 +1,21 @@
1
+name: "Lint PR"
2
+
3
+on:
4
+ pull_request_target:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - synchronize
9
10
+permissions:
11
+ pull-requests: read
12
13
+jobs:
14
+ pr_title:
15
+ name: Validate PR title
16
+ runs-on: ubuntu-latest
17
+ if: github.ref == 'refs/heads/main' && github.repository == 'openai/openai-python'
18
+ steps:
19
+ - uses: amannn/action-semantic-pull-request@v5
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments