Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/smoke-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,18 @@ Do not re-create draft items but use their returned temporary-ids for the update
- `temporary_id`: "draft-1"
- `fields`: `{"Status": "Todo", "Priority": "High"}`

b. **Issue Creation**:
b. **PR Creation**:
Call `update_project` with:
- `project`: "https://github.com/orgs/github/projects/24068"
- `content_type`: "issue"
- `content_number`: 19
- `content_type`: "pull_request"
- `content_number`: 14477
- `fields`: `{"Status": "Todo", "Priority": "High"}`

c. **PR Creation**:
c. **Issue Creation**:
Call `update_project` with:
- `project`: "https://github.com/orgs/github/projects/24068"
- `content_type`: "pull_request"
- `content_number`: 18
- `content_type`: "issue"
- `content_number`: 14478
- `fields`: `{"Status": "Todo", "Priority": "High"}`

2. **Update items**: Update the created items to validate field updates:
Expand All @@ -105,14 +105,14 @@ Do not re-create draft items but use their returned temporary-ids for the update
Call `update_project` to update the pull request item to change status to "In Progress":
- `project`: "https://github.com/orgs/github/projects/24068"
- `content_type`: "pull_request"
- `content_number`: 18
- `content_number`: 14477
- `fields`: `{"Status": "In Progress"}`

c. **Issue Update**:
Call `update_project` to update the issue item to change status to "In Progress":
- `project`: "https://github.com/orgs/github/projects/24068"
- `content_type`: "issue"
- `content_number`: 19
- `content_number`: 14478
- `fields`: `{"Status": "In Progress"}`

3. **Project Status Update**:
Expand Down
Loading