updates descriptions #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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
|
||
| 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 }} | ||