Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaranionjc committed Oct 3, 2023
1 parent c0eeb38 commit 710625f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/powershell-module-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,18 @@ on:
types: [opened, synchronize]
branches:
# Branch with JumpCloudModule_ on it
- 'JumpCloudModule\_*'
- 'JumpCloudModule_/**'
jobs:
check_branch:
runs-on: ubuntu-latest
steps:
- name: Check Base Branch Name
run: |
if [[ ${{ github.ref }} == 'refs/heads/main' ]]; then
echo "This is the main branch"
exit 1
fi
clone:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 710625f

Please sign in to comment.