File tree Expand file tree Collapse file tree 2 files changed +30
-17
lines changed
Expand file tree Collapse file tree 2 files changed +30
-17
lines changed Original file line number Diff line number Diff line change @@ -13,23 +13,6 @@ concurrency:
1313permissions : {}
1414
1515jobs :
16- poetry-checks :
17- # FIXME: Remove when https://github.com/target/make-python-devex/issues/119 is fixed
18- continue-on-error : true
19- runs-on : ubuntu-latest
20- permissions :
21- pull-requests : write
22- contents : read
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
26- with :
27- persist-credentials : false
28- # This will post a comment on PRs when poetry.lock changes
29- - name : Diff poetry.lock
30- uses : nborrmann/diff-poetry-lock@c0afd3666864cec339f03ee5c5cf9cb671780c12
31-
32-
3316 build :
3417 strategy :
3518 matrix :
Original file line number Diff line number Diff line change 1+ name : poetry checks
2+
3+ on :
4+ pull_request :
5+ branches : [ "main" ]
6+
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9+ cancel-in-progress : true
10+
11+ permissions : {}
12+
13+ jobs :
14+ diff-poetry-lock :
15+ # FIXME: Remove when https://github.com/target/make-python-devex/issues/119 is fixed
16+ continue-on-error : true
17+ runs-on : ubuntu-latest
18+ permissions :
19+ pull-requests : write
20+ issues : write
21+ contents : read
22+ steps :
23+ - name : Checkout code
24+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
25+ with :
26+ persist-credentials : false
27+ # This will post a comment on PRs when poetry.lock changes
28+ - name : Diff poetry.lock
29+ uses : colindean/diff-poetry-lock@nl
30+
You can’t perform that action at this time.
0 commit comments