Skip to content

Commit

Permalink
feat: Exclude master branch from draft workflow
Browse files Browse the repository at this point in the history
In the GitHub Actions configuration file (.github/workflows/draft.yml), a new rule has been added to exclude the 'master' branch from triggering the 'draft' workflow. This change ensures that this particular workflow is not unnecessarily run on pushes to the master branch, optimizing our CI/CD pipeline.
  • Loading branch information
NekoOs committed Aug 27, 2024
1 parent 8febf39 commit dd6ac8b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches:
- '*'
- '!master'

name: draft
jobs:
Expand Down

0 comments on commit dd6ac8b

Please sign in to comment.