All checks were successful
Reload Act Runner Stack to clear cache for workflows / diff (push) Successful in 47s
Reload Act Runner Stack to clear cache for workflows / reload-primary (push) Successful in 4s
Reload Act Runner Stack to clear cache for workflows / reload-secondary (push) Successful in 3s
Reload Act Runner Stack to clear cache for workflows / wait-for-secondary-death (push) Successful in 32s
Reload Act Runner Stack to clear cache for workflows / pull-cache-secondary (push) Successful in 8s
18 lines
381 B
YAML
18 lines
381 B
YAML
name: No-Op Cache Pull
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
runs_on_label:
|
|
description: The runner label to execute this workflow on.
|
|
required: false
|
|
type: string
|
|
default: ubuntu-22.04
|
|
|
|
jobs:
|
|
noop:
|
|
runs-on: ${{ inputs.runs_on_label }}
|
|
steps:
|
|
- name: Force actions cache pull
|
|
run: echo "Successfully pulled actions cache!"
|