Skip to content

Commit c416d31

Browse files
authored
Merge branch 'main' into 3634-dependabot-combined-notification
2 parents 3d90904 + 35fdf0d commit c416d31

5 files changed

Lines changed: 91 additions & 40 deletions

File tree

.github/ISSUE_COMMENT_TEMPLATE/target-date.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name: Target Date Update
33
about: Target date update
44
body:
5-
- type: input
6-
attributes:
7-
name: Target completion date
8-
placeholder: With context if the target completion date has changed
9-
inputType: text
10-
- type: input
11-
attributes:
12-
name: 'Attribution'
13-
value: '_created with :heart: by typing_ `/status`'
14-
inputType: text
5+
- type: input
6+
attributes:
7+
name: Target completion date
8+
placeholder: With context if the target completion date has changed
9+
inputType: text
10+
- type: input
11+
attributes:
12+
name: 'Attribution'
13+
value: '_created with :heart: by typing_ `/status`'
14+
inputType: text
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Ready for docs-content review
2+
3+
# **What it does**: Adds pull requests in the docs-internal repository to the docs-content first responder project board
4+
# **Why we have it**: So that other GitHub teams can easily request reviews from the docs-content team, and so that writers can see when a PR is ready for review
5+
# **Who does it impact**: Writers working in the docs-internal repository
6+
7+
on:
8+
pull_request:
9+
types: [labeled]
10+
11+
jobs:
12+
request_doc_review:
13+
name: Request a review from the docs-content team
14+
if: github.event.label.name == 'ready-for-doc-review' && github.repository == 'github/docs-internal'
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Add pull request to FR project board
18+
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
19+
with:
20+
action-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
21+
project-url: 'https://github.com/orgs/github/projects/1367'
22+
column-name: 'Docs-internal external contributor PRs'

.github/workflows/send-eng-issues-to-backlog.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Send Issue to How We Work Boards
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
- reopened
8+
9+
jobs:
10+
triage:
11+
runs-on: ubuntu-latest
12+
continue-on-error: true
13+
steps:
14+
- if: contains(github.event.issue.labels.*.name, 'engineering') && !contains(github.event.issue.labels.*.name, 'feature') && !contains(github.event.issue.labels.*.name, 'epic')
15+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
16+
with:
17+
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
18+
script: |
19+
var column_id = 9659080;
20+
try {
21+
github.projects.createCard({
22+
column_id: column_id,
23+
content_id: context.payload.issue.id,
24+
content_type: "Issue"
25+
});
26+
} catch (error) {
27+
console.log(error);
28+
}
29+
- if: contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'feature')
30+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
31+
with:
32+
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
33+
script: |
34+
var column_id = 13445681;
35+
try {
36+
github.projects.createCard({
37+
column_id: column_id,
38+
content_id: context.payload.issue.id,
39+
content_type: "Issue"
40+
});
41+
} catch (error) {
42+
console.log(error);
43+
}
44+
- if: contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'epic')
45+
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
46+
with:
47+
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
48+
script: |
49+
var column_id = 13445932;
50+
try {
51+
github.projects.createCard({
52+
column_id: column_id,
53+
content_id: context.payload.issue.id,
54+
content_type: "Issue"
55+
});
56+
} catch (error) {
57+
console.log(error);
58+
}

data/release-notes/3-0/2.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ sections:
1717
- In the packages sidebar of a repository, the Docker icon was gray and a tool tip displayed "This service is deprecated".
1818
- Webhooks configured with a content type of `application/x-www-form-urlencoded` did not receive query parameters in the POST request body.
1919
- Users could dismiss a mandatory message without checking all checkboxes.
20+
- In some cases after upgrading from a 2.22.X instance, the web interface assets were missing and the page would not render correctly.
2021
known_issues:
2122
- On a freshly set up GitHub Enterprise Server without any users, an attacker could create the first admin user.
2223
- Custom firewall rules are not maintained during an upgrade.

0 commit comments

Comments
 (0)