Skip to content

Add Issue templates for bug report, features and pull request template #4

Add Issue templates for bug report, features and pull request template

Add Issue templates for bug report, features and pull request template #4

Workflow file for this run

name: PR Validation
on:
pull_request:
branches:
- main
jobs:
validate-app:

Check failure on line 9 in .github/workflows/pr-validation.yml

View workflow run for this annotation

GitHub Actions / PR Validation

Invalid workflow file

The workflow is not valid. .github/workflows/pr-validation.yml (Line: 9, Col: 5): Error calling workflow 'cloudness-io/cloudness/.github/workflows/_build-app.yml@1abc7bcd473b971a16f5556b5ef4f8422ad1890c'. The nested job 'build' is requesting 'packages: write', but is only allowed 'packages: read'.
name: Validate App
permissions:
contents: read
packages: read
uses: ./.github/workflows/_build-app.yml
with:
enable-cache: true
push-images: false
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
validate-builder:
name: Validate Builder
permissions:
contents: read
packages: read
uses: ./.github/workflows/_build-builder.yml
with:
enable-cache: true
push-images: false
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}