Skip to content

Commit

Permalink
feat: Add pull request trigger to CI/CD pipeline
Browse files Browse the repository at this point in the history
Include pull request events to trigger the CI/CD pipeline when
modifications are made to the pipeline configuration file. This
ensures changes are validated before merging into the main branch.
  • Loading branch information
derrix060 committed Sep 25, 2024
1 parent a81105c commit 001fef7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
branches: [main]
tags: ["v*"]
workflow_dispatch:
pull_request:
branches: [main]
paths:
- .github/workflows/ci-cd-pipeline.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 001fef7

Please sign in to comment.