We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 431b4bf commit 4c9bcc1Copy full SHA for 4c9bcc1
.github/workflows/run-ruff.yml
@@ -2,14 +2,23 @@ name: lint
2
3
on:
4
pull_request:
5
- branches: [ "main" ]
6
types: [opened, synchronize, edited]
+ push:
7
+ branches: [ "main" ]
8
9
jobs:
10
lint:
11
name: lint pull request
12
runs-on: ubuntu-latest
13
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
+
22
- name: checkout code
23
uses: actions/checkout@v4
24
0 commit comments