Skip to content

Commit

Permalink
Add triggers for release; Triggers adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
KobeArthurScofield authored Jan 4, 2025
1 parent 5cd2f3b commit 1c1a196
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/daily-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
schedule:
# Update assets on 11:45 (UTC) and 23:45 (UTC), per 12 hours
- cron: '45 11,23 * * *'
release:
# Check for update on release
types: [published]
push:
# Prevent triggering update request storm
paths:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
push:
branches:
- main
paths-ignore:
- '.github/build/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'

jobs:
build-image:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/release-win7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,19 @@ on:
workflow_dispatch:
release:
types: [published]
paths-ignore:
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'
push:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'

jobs:
build:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,19 @@ on:
workflow_dispatch:
release:
types: [published]
paths-ignore:
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'
push:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'

jobs:
build:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,20 @@ name: Test

on:
push:
paths-ignore:
- '.github/build/*'
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '.github/build/*'
- '.github/docker/*'
- '.github/ISSUE_TEMPLATE/*'
- '.github/dependabot.yml'
- '.gitignore'

jobs:
test:
Expand Down

0 comments on commit 1c1a196

Please sign in to comment.