Files
LuaCsForBarotraumaEP/.github/workflows/on-push-other-branch.yml
2023-05-27 22:23:34 -04:00

17 lines
328 B
YAML

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: On push to a secondary branch
on:
push:
branches-ignore: [master]
paths-ignore:
- ".github/**"
- "*.md"
jobs:
run-tests:
uses: ./.github/workflows/run-tests.yml
with:
target: ${{ github.event.ref }}