Skip to content

fix: update pre-commit-config.yaml #11

fix: update pre-commit-config.yaml

fix: update pre-commit-config.yaml #11

Workflow file for this run

---
name: Continous Integration
on: # yamllint disable-line rule:truthy
push:
branches:
- main
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
call-docker-build:

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Continous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 3): Error calling workflow 'irishlab-io/pipelines/.github/workflows/reusable-docker-build.yml@main'. The workflow is requesting 'attestations: write, id-token: write', but is only allowed 'attestations: none, id-token: none'.
name: Call Docker Build
uses: irishlab-io/pipelines/.github/workflows/reusable-docker-build.yml@main
permissions:
contents: read
packages: write # needed to push docker image to ghcr.io
pull-requests: write # needed to create and update comments in PRs
with:
ghcr-enable: true
image-names: |
ghcr.io/${{ github.repository }}
tag-rules: |
type=raw,value=stable-{{date 'YYYYMMDD'}}-{{sha}},enable={{is_default_branch}},priority=300
type=ref,event=tag,priority=200
type=raw,value=latest,enable={{is_default_branch}},priority=100
type=raw,value=gha-${{ github.run_id }},enable=${{github.event_name == 'pull_request'}},priority=200
type=ref,event=pr,priority=100
platforms: linux/amd64,linux/arm64
comment-enable: true