Skip to content

Commit

Permalink
Fix up other GitHub action workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarkowsky committed Sep 30, 2024
1 parent ddbaae6 commit 3a9ad9d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- "**.md"
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

jobs:
markdown-check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: E2E

on:
schedule:
- cron: '0 4 * * *' # Every day at 4:00 UTC (not to interfere with fuzzing)
- cron: '0 5 * * *' # Every day at 5:00 UTC (not to interfere with fuzzing)
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Fuzzing

on:
schedule:
- cron: '0 6 * * *' # Every day at 6:00 UTC
- cron: '0 7 * * *' # Every day at 6:00 UTC
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

jobs:
Expand All @@ -25,7 +25,7 @@ jobs:
bazel run --config=fuzz $target -- -- -max_len=32768 -runs=1000000 -timeout=5
done
- name: Upload crashes
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4.4.0
if: failure()
with:
name: artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: sanitizers
on:
schedule:
- cron: '0 16 * * *'
- cron: '0 15 * * *'
workflow_dispatch:

jobs:
Expand All @@ -23,7 +23,7 @@ jobs:
--runs_per_test 5 -t- :unit_tests \
--define=SANTA_BUILD_TYPE=adhoc
- name: Upload logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4.4.0
if: failure()
with:
name: logs
Expand Down

0 comments on commit 3a9ad9d

Please sign in to comment.