Skip to content

docs(changelog): update release notes #387

docs(changelog): update release notes

docs(changelog): update release notes #387

Workflow file for this run

name: Nightly Release
permissions:
id-token: write
contents: write
packages: write
on:
push:
branches:
- main
jobs:
check-dependabot-commits:
name: Check if dependabot commits exist
outputs:
isDependabot: ${{ steps.check-dependabot.outputs.dependabotExists }}
runs-on: ubuntu-latest
steps:
- name: Check if dependabot commits exist
id: check-dependabot
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "dependabotExists=$(echo $GITHUB_CONTEXT | jq '.event.commits[].author | any(. == "dependabot[bot]")')" >> $GITHUB_OUTPUT
nightly:

Check failure on line 26 in .github/workflows/nighlty.yml

View workflow run for this annotation

GitHub Actions / Nightly Release

Invalid workflow file

The workflow is not valid. .github/workflows/nighlty.yml (Line: 26, Col: 3): Error calling workflow 'Checkmarx/ast-vscode-extension/.github/workflows/release.yml@main'. The workflow is requesting 'pull-requests: write', but is only allowed 'pull-requests: none'.
needs: check-dependabot-commits
if: ${{needs.check-dependabot-commits.outputs.isDependabot == 'false'}}
uses: Checkmarx/ast-vscode-extension/.github/workflows/release.yml@main
secrets: inherit