Skip to content

Commit 780b88e

Browse files
authored
Merge pull request #209 from banginji/nl
checking lock action
2 parents 4392ce0 + 1e53ccf commit 780b88e

File tree

2 files changed

+30
-17
lines changed

2 files changed

+30
-17
lines changed

.github/workflows/make-based-ci.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,6 @@ concurrency:
1313
permissions: {}
1414

1515
jobs:
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:
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+

0 commit comments

Comments
 (0)