Skip to content
Merged
Changes from 1 commit
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
Next Next commit
new-fields
  • Loading branch information
jake-perkins committed Aug 19, 2025
commit bd1b0160eb45d653d2b42cd4336235a5d017dc59
16 changes: 16 additions & 0 deletions .github/workflows/post-gh-rca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ on:
description: The entry ID for the team field in the Google Form
required: true
type: string
entry-repo-name:
description: The entry ID for the repository name field
required: true
type: string
entry-issue-url:
description: The entry ID for the GitHub issue URL field
required: true
type: string


jobs:
post-rca-form:
Expand All @@ -56,6 +65,8 @@ jobs:
ENTRY_ISSUE: ${{ inputs.entry-issue }}
ENTRY_REGRESSION: ${{ inputs.entry-regression }}
ENTRY_TEAM: ${{ inputs.entry-team }}
ENTRY_REPO_NAME: ${{ inputs.entry-repo-name }}
ENTRY_ISSUE_URL: ${{ inputs.entry-issue-url }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -64,6 +75,8 @@ jobs:
ENTRY_ISSUE,
ENTRY_REGRESSION,
ENTRY_TEAM,
ENTRY_REPO_NAME,
ENTRY_ISSUE_URL,
OWNER_NAME: owner,
REPO_NAME: repo,
ISSUE_NUMBER: issueNumStr,
Expand Down Expand Up @@ -109,6 +122,9 @@ jobs:
teamLabels.length ? teamLabels.join(',') : ''
);

formUrl.searchParams.set(ENTRY_REPO_NAME, repo);
formUrl.searchParams.set(ENTRY_ISSUE_URL, `https://github.com/${owner}/${repo}/issues/${issue_number}`);

const assignees = issue.assignees.map(u=>`@${u.login}`).join(', ');
const body = `Hi ${assignees},

Expand Down
Loading