Skip to content

Commit

Permalink
ci: run CI/CD checks on PRs from other forks
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Aug 27, 2024
1 parent 650464c commit dea503f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: CI/CD

on:
workflow_dispatch:
push:
pull_request: # Runs whenever a pull request is created or updated (including from another fork)
push: # Runs whenever a commit is pushed to the repository...
branches: [master, develop, hotfix/*] # ...on any of these branches
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
concurrency:
group: "${{ github.workflow }} @ ${{ github.head_ref || github.ref }}"
cancel-in-progress: true
Expand Down

0 comments on commit dea503f

Please sign in to comment.