Release v1.3.2 #4
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: Action CI | |
on: | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
fail: | |
permissions: | |
contents: none | |
name: "Targeting master" | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
cat <<EOF | |
You are targeting master as your base branch. | |
The master branch should be used for releases and important fixes only. | |
Please rebase to the develop branch. | |
EOF | |
exit 1 |