Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.15.0 #58

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.15.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.15.0 #58

Workflow file for this run

name: 'The Pipeline'
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true
jobs:
extract-branch:
name: 'Fetch branch'
runs-on: ubuntu-latest
outputs:
current_branch: ${{ steps.get-branch.outputs.current_branch }}
steps:
- name: Extract branch name 🕊
id: get-branch
run: echo "current_branch=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
ci:

Check failure on line 25 in .github/workflows/pipeline.yml

View workflow run for this annotation

GitHub Actions / The Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/pipeline.yml (Line: 25, Col: 3): Error calling workflow 'vinayakkulkarni/v-kong-dashboard/.github/workflows/ci.yml@main'. The workflow is requesting 'checks: write', but is only allowed 'checks: none'.
name: 'CI'
needs:
- extract-branch
uses: vinayakkulkarni/v-kong-dashboard/.github/workflows/ci.yml@main
builder:
name: 'Builder'
needs:
- extract-branch
- ci
if: ${{ github.event_name == 'push' }}
uses: vinayakkulkarni/v-kong-dashboard/.github/workflows/builder.yml@main
with:
branch: ${{ needs.extract-branch.outputs.current_branch }}