Skip to content

Commit

Permalink
Run if self has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-cooney committed Oct 22, 2023
1 parent 9cee04e commit 59d1d44
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@ on:
push:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
paths:
- '**' # Include all files by default
- '!.devcontainer/**'
- '!.vscode/**'
- '!.git*'
- '!*.md'
- '!.github/**'
- '.github/workflows/checks.yml' # Still include current workflow
pull_request:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
paths:
- '**'
- '!.devcontainer/**'
- '!.vscode/**'
- '!.git*'
- '!*.md'
- '!.github/**'
- '.github/workflows/checks.yml'
# Allow this workflow to be called from other workflows
workflow_call:
inputs:
Expand Down

0 comments on commit 59d1d44

Please sign in to comment.