Skip to content

Commit f5def9a

Browse files
committed
Limit sync standard execution on schedule
1 parent 6912155 commit f5def9a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/CD.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
publish:
13+
if: github.event_name != 'schedule' || github.ref == 'refs/heads/master'
1314
uses: EvergineTeam/evergine-standards/.github/workflows/binding-simple-cd.yml@main
1415
with:
1516
generator-project: "OpenGLGen/OpenGLGen/OpenGLGen.csproj" # Path to your generator .csproj

.github/workflows/sync-standards.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ on:
4141

4242
jobs:
4343
sync:
44+
if: github.event_name != 'schedule' || github.ref == 'refs/heads/master'
4445
permissions:
4546
contents: write # allow push commits
4647
pull-requests: write

0 commit comments

Comments
 (0)