Skip to content

Remove jquery and bootstrap from bulkrax #1057

Remove jquery and bootstrap from bulkrax

Remove jquery and bootstrap from bulkrax #1057

Workflow file for this run

name: Verify
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
branches:
runs-on: ubuntu-latest
name: Disallow "master" branch name
steps:
- uses: actions/checkout@v2
- name: Check branch names
run: |
git fetch --all --quiet --prune --prune-tags
if [[ -n "$(git branch --all --list master */master)" ]]; then
echo "A branch named 'master' was found. Please remove it."
echo "$(git branch --all --list master */master)"
fi
[[ -z "$(git branch --all --list master */master)" ]]