Skip to content

Lint for parameters being used in actions to which they don't apply (… #5

Lint for parameters being used in actions to which they don't apply (…

Lint for parameters being used in actions to which they don't apply (… #5

Workflow file for this run

name: porter/porter-canary
on:
workflow_dispatch:
inputs:
shouldPublish:
description: Should Publish
default: true
type: boolean
required: false
skipTests:
description: Skip Tests
default: false
type: boolean
required: false
push:
branches:
- main
- release/*
pull_request:
branches:
- split-builds
jobs:
build_pipelinesrelease_template:

Check failure on line 23 in .github/workflows/porter-canary.yml

View workflow run for this annotation

GitHub Actions / porter/porter-canary

Invalid workflow file

The workflow is not valid. .github/workflows/porter-canary.yml (Line: 23, Col: 3): Error calling workflow 'Arhell/porter/.github/workflows/build_pipelinesrelease_template.yml@4f540b81c7851ddcb2728893b7f10293f498fd02'. The nested job 'publish_binaries' is requesting 'actions: write, checks: write, contents: write, deployments: write, discussions: write, issues: write, packages: write, pages: write, pull-requests: write, repository-projects: write, statuses: write, security-events: write, id-token: write', but is only allow[...] .github/workflows/porter-canary.yml (Line: 23, Col: 3): Error calling workflow 'Arhell/porter/.github/workflows/build_pipelinesrelease_template.yml@4f540b81c7851ddcb2728893b7f10293f498fd02'. The nested job 'publish-ghcr' is requesting 'actions: write, checks: write, contents: write, deployments: write, discussions: write, issues: write, packages: write, pages: write, pull-requests: write, repository-projects: write, statuses: write, security-events: write, id-token: write', but is only allowed '[...]
name: build_pipelinesrelease_template
uses: ./.github/workflows/build_pipelinesrelease_template.yml
with:
registry: ghcr.io/getporter
shouldPublish: "${{inputs.shouldPublish}}"
skipTests: "${{inputs.skipTests}}"