Skip to content

Commit ab43cb8

Browse files
authored
repo sync
2 parents a3f6952 + f5f245c commit ab43cb8

File tree

2 files changed

+33
-35
lines changed

2 files changed

+33
-35
lines changed
+29-31
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,33 @@
11
---
2-
name: Suggest ideas and updates for the Docs website
2+
name: Improve the docs.github.com site
33
about: Make a suggestions or report a problem on the docs.github.com website.
4+
title: ''
45
labels: engineering
5-
body:
6-
- type: markdown
7-
attributes:
8-
value: |
9-
HUBBERS BEWARE! Please confirm you're on the github/docs-internal repo and not the github/docs repo before proceeding, unless you want to make your work public to the entire internet. The github/docs repo is open source and public to the entire internet.
10-
11-
For questions, ask in Discussions: https://github.com/github/docs/discussions
12-
- type: checkboxes
13-
attributes:
14-
label: Contributing Guidelines
15-
options:
16-
- label: 'I agree to follow the [Code of Conduct](https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md)'
17-
required: true
18-
- label: 'I have read the [Contributing Guide](https://github.com/github/docs/blob/main/CONTRIBUTING.md)'
19-
required: true
20-
- label: 'There is not a similar issue that has been [already opened](https://github.com/github/docs/issues)'
21-
required: true
22-
- type: textarea
23-
attributes:
24-
label: Suggestion
25-
description: What changes are you suggesting?
26-
placeholder: Explain, in writing, with as much detail as possible, what changes you're suggesting and why. Provide supporting information using screenshots and URLs where possible, to help us understand your suggested changes.
27-
validations:
28-
required: true
29-
- type: textarea
30-
attributes:
31-
label: Additional Information
32-
placeholder: Any additional information, configuration, or data that might be necessary to reproduce the issue.
33-
validations:
34-
required: true
6+
assignees: ''
7+
---
8+
9+
<!--
10+
HUBBERS BEWARE! THE GITHUB/DOCS REPO IS PUBLIC TO THE ENTIRE INTERNET. OPEN AN ISSUE IN GITHUB/DOCS-CONTENT INSTEAD.
11+
-->
12+
13+
<!--
14+
For questions, ask in Discussions: https://github.com/github/docs/discussions
15+
16+
Before you file an issue read the:
17+
- Code of Conduct: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md
18+
- Contributing guide: https://github.com/github/docs/blob/main/CONTRIBUTING.md
19+
20+
Check to make sure someone hasn't already opened a similar issue: https://github.com/github/docs/issues
21+
-->
22+
23+
### What is the current behavior?
24+
25+
<!-- Include links to articles where you're seeing a problem, screenshots, what browser you're using, etc. -->
26+
27+
### What changes are you suggesting?
28+
29+
<!-- Give as much detail as you can to help us understand the change you want to see. Why should the docs be changed? What use cases does it support? What is the expected outcome? -->
30+
31+
### Additional information
3532

33+
<!-- Any additional information, configuration, or data that might be necessary to reproduce the issue. -->

.github/workflows/send-crowdin-prs-to-boards.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
try {
2020
await github.projects.createCard({
2121
column_id: squadBoardColumnId,
22-
content_id: context.payload.issue.id,
23-
content_type: "Issue"
22+
content_id: context.payload.pull_request.id,
23+
content_type: "PullRequest"
2424
});
2525
} catch (error) {
2626
console.log(error);
@@ -30,8 +30,8 @@ jobs:
3030
try {
3131
await github.projects.createCard({
3232
column_id: prBoardColumnId,
33-
content_id: context.payload.issue.id,
34-
content_type: "Issue"
33+
content_id: context.payload.pull_request.id,
34+
content_type: "PullRequest"
3535
});
3636
} catch (error) {
3737
console.log(error);

0 commit comments

Comments
 (0)