Skip to content

Commit

Permalink
fix: slim
Browse files Browse the repository at this point in the history
  • Loading branch information
UnicornChance committed Aug 26, 2024
1 parent 19beda5 commit c120b4f
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/slim-dev-test.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
name: Slim Dev

# This workflow is triggered on pull requests
on:
pull_request:
# milestoned is added here as a workaround for release-please not triggering PR workflows (PRs should be added to a milestone to trigger the workflow).
types: [milestoned, opened, reopened, synchronize]
paths:
- src/pepr/**
- src/keycloak/**
- src/istio/**
- src/prometheus-stack/**
- packages/slim-dev/**
- bundles/k3d-slim-dev/**
- .github/workflows/slim-dev**
- src/pepr/*
- src/keycloak/*
- src/istio/*
- src/prometheus-stack/*
- packages/slim-dev/*
- bundles/k3d-slim-dev/*
- .github/workflows/slim-dev*

# Permissions for the GITHUB_TOKEN used by the workflow.
permissions:
id-token: write
contents: read
pull-requests: read
id-token: write # Needed for OIDC-related operations.
contents: read # Allows reading the content of the repository.
pull-requests: read # Allows reading pull request metadata.

# Default settings for all run commands in the workflow jobs.
defaults:
run:
shell: bash -e -o pipefail {0}
shell: bash -e -o pipefail {0} # Ensures that scripts fail on error and pipefail is set.

# Abort prior jobs in the same workflow / PR
concurrency:
group: test-slim-dev-${{ github.ref }}
cancel-in-progress: true
Expand Down

0 comments on commit c120b4f

Please sign in to comment.