Skip to content

Commit

Permalink
Don't deploy for changes to _minutes/
Browse files Browse the repository at this point in the history
The content of _minutes/ never affects the publication on the gh-pages
branch. To avoid unnecessary deploy builds when we publish meeting
notes, add `_minutes/**` to the paths to ignore in the deploy workflow.
  • Loading branch information
Rob--W committed Jan 20, 2023
1 parent 8452617 commit cab3b4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
paths-ignore:
- '_minutes/**'
pull_request:
branches: [ main ]
paths-ignore:
- '_minutes/**'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down

0 comments on commit cab3b4d

Please sign in to comment.