don't run actions workflows whenever a new tag is created
This commit is contained in:
parent
108f5ab572
commit
ba0949c405
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
name: Actions
|
name: Actions
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
Build Documentation:
|
Build Documentation:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
Reference in a new issue