Skip to content

Commit

Permalink
Have CI action run when it is changed. (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefmolin authored Oct 2, 2024
1 parent 5294c03 commit 53e3480
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ name: CI
on:
push:
branches: [ "main" ]
paths-ignore:
- '.github/**'
paths:
- '**'
- '!.github/**'
- '.github/workflows/ci.yml'
tags: [ "v*" ]

pull_request:
paths-ignore:
- '.github/**'
paths:
- '**'
- '!.github/**'
- '.github/workflows/ci.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down

0 comments on commit 53e3480

Please sign in to comment.