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!"