We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3bc56c commit 0902705Copy full SHA for 0902705
1 file changed
.github/workflows/sourcery.yml
@@ -0,0 +1,28 @@
1
+name: Check PR using Sourcery
2
+on: # yamllint disable-line rule:truthy
3
+ pull_request:
4
+ merge_group:
5
+ branches:
6
+ - main
7
+ types:
8
+ - checks_requested
9
+ push:
10
11
12
+ workflow_dispatch:
13
+permissions:
14
+ contents: read
15
+review-with-sourcery:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
+
22
+ - uses: actions/setup-python@v5
23
24
+ python-version: "3.10"
25
26
+ - uses: sourcery-ai/action@v1
27
28
+ token: ${{ secrets.SOURCERY_TOKEN }}
0 commit comments