Skip to content

Commit

Permalink
ci: adjust references
Browse files Browse the repository at this point in the history
  • Loading branch information
marctrem committed Nov 30, 2023
1 parent 974cb5a commit a9a6fea
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on_daily.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Runs every day regardless of new commits
# This workflow runs every day regardless of new commits

name: All Coverage
name: On Daily
on:
schedule:
- cron: '0 0 * * *'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on_daily_with_change.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Kick off a daily battery of extended tests.
# Only runs if latest commit was made within today.
# This workflow kicks off a daily battery of extended tests.
# It only runs if latest commit was made within today.

name: On Daily Change
on:
Expand All @@ -24,5 +24,5 @@ jobs:
call-codeql:
needs: check-date
if: needs.check-date.outputs.should_run == 'true'
uses: ./.github/workflows/_codeql.yml
uses: ./.github/workflows/codeql.yml
secrets: inherit
6 changes: 3 additions & 3 deletions .github/workflows/on_main_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:

build-frankendancer:
name: Build Frankendancer
uses: ./.github/workflows/_build_frankendancer.yml
uses: ./.github/workflows/build_everything.yml

test-functional:
name: Functional Tests
uses: ./.github/workflows/_test_functional.yml
uses: ./.github/workflows/functional_tests.yml

publish-to-clusterfuzz:
name: Publish to Clusterfuzz
Expand All @@ -31,4 +31,4 @@ jobs:

whitespace-check:
name: Check for Whitespaces
uses: ./.github/workflows/_trailing_whitespace.yml
uses: ./.github/workflows/trailing_whitespace.yml
4 changes: 2 additions & 2 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:

build-frankandancer:
name: Build Frankendancer
uses: ./.github/workflows/_build_frankendancer.yml
uses: ./.github/workflows/build_everything.yml

whitespace-check:
name: Check for Whitespaces
uses: ./.github/workflows/_trailing_whitespace.yml
uses: ./.github/workflows/trailing_whitespace.yml

0 comments on commit a9a6fea

Please sign in to comment.