Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
wtripp180901 authored Jan 8, 2025
1 parent eca4ea0 commit b1d60de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/update-timestamps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
ci_cloud_override: 'LEAFCLOUD'
target_branch: auto/bump-timestamps

bump_timestamps:
bump_images:
if: needs.upstream_check.outputs.new_fatimage == 'true'
needs: build_fatimage
runs-on: ubuntu-22.04
Expand All @@ -110,8 +110,8 @@ jobs:
git push
create_pr:
needs: bump_timestamps
if: always() && (needs.bump_timestamps.result == 'skipped' || needs.bump_timestamps.result == 'success')
needs: bump_images
if: always() && (needs.bump_images.result == 'skipped' || needs.bump_images.result == 'success')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
Expand All @@ -136,9 +136,9 @@ jobs:

run_ci:
needs:
- bump_timestamps
- bump_images
- upstream_check
if: always() && (needs.bump_timestamps.result == 'success' || needs.upstream_check.outputs.new_fatimage == 'false') # should always run only on image bump commits
if: always() && (needs.bump_images.result == 'success' || needs.upstream_check.outputs.new_fatimage == 'false') # should always run only on image bump commits
uses: ./.github/workflows/stackhpc.yml
secrets: inherit
with:
Expand Down

0 comments on commit b1d60de

Please sign in to comment.