Skip to content

Commit

Permalink
Add single quotations around wildcards in GH action filters
Browse files Browse the repository at this point in the history
Documentation has wildcards within single quotations. Seeing if that
fixes the filter issues.
  • Loading branch information
WalterKolczynski-NOAA committed Aug 18, 2023
1 parent 1e170e6 commit 9effa72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ on:
push:
branches:
- develop
- feature/*
- main/*
- bugfix/*
- release/*
- 'feature/*'
- 'main/*'
- 'bugfix/*'
- 'release/*'
paths:
- docs/**
- 'docs/**'
pull_request_target:
types: [issues, opened, reopened, synchronize]
paths:
- docs/**
- 'docs/**'

jobs:

Expand Down

0 comments on commit 9effa72

Please sign in to comment.