Skip to content

ci: new release pipeline #45

ci: new release pipeline

ci: new release pipeline #45

Workflow file for this run

on:
pull_request:
types: [opened, reopened, synchronize]
env:
RELEASE_DRY_RUN: 1
name: "Pull Requests"
jobs:
tests:
name: Tests
uses: ./.github/workflows/tests.yml
linters:
name: Linters
uses: ./.github/workflows/linters.yml
eslint-review:
name: ESLint Review
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release-check:

Check failure on line 31 in .github/workflows/pull_requests.yml

View workflow run for this annotation

GitHub Actions / Pull Requests

Invalid workflow file

The workflow is not valid. .github/workflows/pull_requests.yml (Line: 31, Col: 3): Error calling workflow 'Open-Attestation/document-store/.github/workflows/publish.yml@34a81e292263d617d0422e2b06b9401994956a43'. The nested job 'publish' is requesting 'contents: write, issues: write, pull-requests: write', but is only allowed 'contents: read, issues: read, pull-requests: read'.
name: Release Check
uses: ./.github/workflows/publish.yml
permissions:
contents: read
issues: read
pull-requests: read