chore(deps): update homebrew/actions digest to 96b6254 #1390
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 Defense Unicorns | |
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial | |
name: E2E PR Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- "adr/**" | |
- "docs/**" | |
- "hack/**" | |
- "CODEOWNERS" | |
- "goreleaser*.y*ml" | |
- ".github/workflows/*release*.y*ml" | |
permissions: | |
contents: read | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: e2e-k3d-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: ./.github/workflows/parallel-tests.yaml |