Skip to content

Commit 4c9bcc1

Browse files
committed
update ruff
1 parent 431b4bf commit 4c9bcc1

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/run-ruff.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@ name: lint
22

33
on:
44
pull_request:
5-
branches: [ "main" ]
65
types: [opened, synchronize, edited]
6+
push:
7+
branches: [ "main" ]
78

89
jobs:
910
lint:
1011
name: lint pull request
1112
runs-on: ubuntu-latest
1213
steps:
14+
- name: Debug workflow trigger
15+
run: |
16+
echo "Workflow triggered by: ${{ github.event_name }}"
17+
echo "PR number: ${{ github.event.pull_request.number }}"
18+
echo "PR title: ${{ github.event.pull_request.title }}"
19+
echo "Repository: ${{ github.repository }}"
20+
echo "Branch: ${{ github.head_ref }}"
21+
1322
- name: checkout code
1423
uses: actions/checkout@v4
1524

0 commit comments

Comments
 (0)