Skip to content

updates descriptions #1

updates descriptions

updates descriptions #1

# Ensures all the relevant groups of labels are applied to a PR.

Check failure on line 1 in .github/workflows/pr-enforce-label-group.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-enforce-label-group.yml

Invalid workflow file

(Line: 19, Col: 9): Unexpected value 'secrets', (Line: 29, Col: 9): Unexpected value 'secrets', (Line: 39, Col: 9): Unexpected value 'secrets'
name: Enforce All PR Labels
on:
workflow_call:
secrets:
github-token:
required: true
description: A GitHub personal access token with write access to the project
jobs:
calver:
name: Calendar Versioning Labels
runs-on: ubuntu-latest
steps:
- uses: localstack/meta/.github/workflows/pr-enforce-pr-labels.yml@main
with:
labels: "calver: patch, calver: monthly, calver: breaking"
secrets:
github-token: ${{ secrets.github-token }}
docs:
name: Documentation Labels
runs-on: ubuntu-latest
steps:
- uses: localstack/meta/.github/workflows/pr-enforce-pr-labels.yml@main
with:
labels: "docs: needed, docs: skip"
secrets:
github-token: ${{ secrets.github-token }}
notes:
name: Notes Labels
runs-on: ubuntu-latest
steps:
- uses: localstack/meta/.github/workflows/pr-enforce-pr-labels.yml@main
with:
labels: "notes: needed, notes: skip"
secrets:
github-token: ${{ secrets.github-token }}