Skip to content

Commit 132467d

Browse files
heiskrsarahschiedo
authored
Add actions description outline to two actions that are missing them (github#18626)
Add actions description outline to two actions that are missing them Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com> Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com>
1 parent 6ac01f2 commit 132467d

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/open-enterprise-issue.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Open Enterprise release or deprecation issue
22

3+
# **What it does**: Checks if there is an Enterprise release or deprecation upcoming, and if so, opens an issue with the tasks to be completed.
4+
# **Why we have it**: GHES releases and deprecations run on a predictable schedule, so we can automate some of the project management aspects.
5+
# **Who does it impact**: Docs engineering, docs content.
6+
37
on:
48
schedule:
59
- cron: '49 14 * * *' # At 14:49 UTC daily
Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Send Crowdin PRs to boards
22

3+
# **What it does**: Sends PRs opened on the crowdin branch to the ready for work column in this board: https://github.com/orgs/github/projects/1269#column-13447153
4+
# **Why we have it**: To make sure the first responder sees crowdin translations that need to be merged as they review the Task board.
5+
# **Who does it impact**: Docs localization and Docs Engineering
6+
37
on:
48
pull_request:
59
types:
@@ -14,7 +18,7 @@ jobs:
1418
with:
1519
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
1620
script: |
17-
var squadBoardColumnId = 13447153; // Add to the team backlog/squad board
21+
var squadBoardColumnId = 13447153; // Add to the team task board
1822
1923
try {
2024
await github.projects.createCard({
@@ -25,14 +29,3 @@ jobs:
2529
} catch (error) {
2630
console.log(error);
2731
}
28-
29-
var prBoardColumnId = 10095775; // Add to the pull requests board
30-
try {
31-
await github.projects.createCard({
32-
column_id: prBoardColumnId,
33-
content_id: context.payload.pull_request.id,
34-
content_type: "PullRequest"
35-
});
36-
} catch (error) {
37-
console.log(error);
38-
}

0 commit comments

Comments
 (0)