Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Staging

Staging #41

name: Master Protection
on:
workflow_dispatch:
pull_request:
branches:
- 'master'
jobs:
check-pr-branch:
runs-on: ubuntu-latest
steps:
- name: Workflow run cleanup action
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/[email protected]
- name: Check Tag
run: |
stringContain() { [ -z "$1" ] || { [ -z "${2##*$1*}" ] && [ -n "$2" ];};}
if stringContain ${{github.head_ref}} 'staging' || stringContain ${{github.head_ref}} 'hotfix'; then exit 0; else exit 1; fi