We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d9f73 commit 07d55f7Copy full SHA for 07d55f7
.github/workflows/action.yml
@@ -1,17 +1,24 @@
1
-name: 'Run EmulationStation Script'
+name: 'Run Script'
2
3
on:
4
push:
5
- branches: [master, dev, test]
6
- # schedule:
7
- # - cron: "0 0 */2 * *"
+ branches:
+ - master
+ - dev
8
+ schedule:
9
+ - cron: "0 0 */2 * *"
10
11
12
jobs:
13
14
build:
15
16
runs-on: windows-latest
17
+
18
+ if: |
19
+ github.event_name == 'push' ||
20
+ (github.event_name == 'schedule' && github.ref == 'refs/heads/master')
21
22
23
steps:
24
- uses: actions/checkout@v4
0 commit comments