Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/dependabot-burner.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .github/workflows/test-project-url-default.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .github/workflows/test-project-url-default.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ engine: copilot
on:
workflow_dispatch:

project: "https://github.com/orgs/<ORG>/projects/<NUMBER>"
project: https://github.com/orgs/example-org/projects/123

safe-outputs:
update-project:
Expand Down Expand Up @@ -42,9 +42,9 @@ URL as a default when the message doesn't specify a project field.
}
```

This will automatically use `https://github.com/orgs/<ORG>/projects/<NUMBER>` from the frontmatter.
This will automatically use `https://github.com/orgs/example-org/projects/123` from the frontmatter.

Important: this is a placeholder. Replace it with a real GitHub Projects v2 URL before running the workflow.
**Note:** This is an example URL. Replace it with your actual GitHub Projects v2 URL before running the workflow.

```json
{
Expand Down
8 changes: 8 additions & 0 deletions docs/src/content/docs/examples/project-tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ Use a GitHub Project URL directly:
project: https://github.com/orgs/github/projects/123
```

:::note[YAML Quoting]
The project URL can be written with or without quotes in YAML:
- **Unquoted**: `project: https://github.com/orgs/github/projects/123` ✅ (recommended)
- **Quoted**: `project: "https://github.com/orgs/github/projects/123"` ✅ (also valid)

Both forms are equivalent. Quotes are required only if the URL contains special YAML characters like `#`, `:` at the start, or other special sequences. For standard GitHub Project URLs, quotes are optional.
:::

### Full Configuration (Object)

Customize behavior with additional options:
Expand Down
Loading