feat: unbrella Gitlab #11
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
name: Setup | |
# This workflow is triggered on pull requests to the main branch. | |
on: | |
pull_request: | |
paths: | |
- ".github/**" | |
- "bundle/**" | |
- "values/**" | |
- "tasks/**" | |
- "tests/**" | |
- "tasks.yaml" | |
- "zarf.yaml" | |
# Permissions for the GITHUB_TOKEN used by the workflow. | |
permissions: | |
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} # Ensures that scripts fail on error and pipefail is set. | |
jobs: | |
run-test: | |
name: Test | |
uses: ./.github/workflows/test.yaml | |
secrets: inherit |