Skip to content

GH Workflows

GH Workflows #1

Workflow file for this run

name: PR
permissions: read-all
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths-ignore:
- '**.sh'
- 'docs/*'
- 'build/*'
- '.github/*'
# - '**.md' // Uncomment this line to ignore all markdown files
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-and-build:
permissions:
actions: read
checks: read
deployments: read
id-token: write
issues: read
discussions: read
packages: read
pages: read
pull-requests: write
repository-projects: read
security-events: read
statuses: read
attestations: read
contents: write
uses: ./.github/workflows/build.yaml
secrets: inherit
with:
ARTIFACTS_PATH: buils/libs
build-image:
permissions:
actions: read
checks: read
contents: write
deployments: read
discussions: read
id-token: write
issues: read
packages: write
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
attestations: read
uses: ./.github/workflows/image-build.yaml

Check failure on line 55 in .github/workflows/pr.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/pr.yaml" -> "./.github/workflows/image-build.yaml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
ARTIFACTS_PATH: buils/libs
IMAGE_NAME: paladin
IMAGE_TAG: pr-test
BUILD_PLATFORM: linux/amd64
secrets: inherit