Skip to content

wip

wip #53

name: PR - Label

Check failure on line 1 in .github/workflows/pull-request-label.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request-label.yml

Invalid workflow file

(Line: 27, Col: 12): Job 'test-robot-check' depends on unknown job 'build'., (Line: 38, Col: 12): Job 'all-green' depends on job 'test-robot-check' which creates a cycle in the dependency graph.
on:
pull_request:
types: [labeled, unlabeled]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.event.label.name }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
actions: write
jobs:
test-robot-label:
name: Job
uses: ./.github/workflows/test-robot-label.yml
with:
label-test-robot-done: test-robot-done
label-test-robot-needed: test-robot-needed
secrets:
token: ${{ secrets.BOT_REPO_TOKEN }}
test-robot-check:
needs: build
if: ${{ !cancelled() }}
name: Job
uses: ./.github/workflows/test-robot-check.yml
with:
label-test-robot-done: test-robot-done
label-test-robot-needed: test-robot-needed
secrets:
token: ${{ secrets.BOT_REPO_TOKEN }}
all-green:
needs: test-robot-check
if: ${{ !cancelled() }}
name: Job
uses: ./.github/workflows/all-green.yml