Add VITE_GIS_TOKEN to the image service request #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gitflow Enforcer | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
jobs: | |
gitflow_enforcer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check branch | |
if: github.base_ref == 'main' && (github.head_ref != 'develop' && !startsWith(github.head_ref, 'hotfix/')) | |
run: | | |
echo "ERROR: You can only merge to main from develop or hotfix/* branches" | |
exit 1 |