Skip to content

wip

wip #42

Workflow file for this run

name: PR

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

View workflow run for this annotation

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

Invalid workflow file

(Line: 39, Col: 12): Job 'build' depends on unknown job 'test-remove-labels'.
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
pull-requests: write
jobs:
test-label:
if: github.event.label.name == 'robot-tested'
name: Test Label
runs-on: ubuntu-latest
steps:
- name: Test Label Added
uses: ./.github/actions/test-unlabel
with:
label-robot-tested: robot-tested
test-unlabel:
if: github.event.action == 'synchronize'
name: Test Unlabel
runs-on: ubuntu-latest
steps:
- name: Remove Test Label
uses: ./.github/actions/test-label
with:
label-robot-tested: robot-tested
label-robot-test-needed: needs-robot-testing
build:
needs: test-remove-labels
if: always() && github.event.action != 'labeled'
name: Job
uses: ./.github/workflows/build.yaml