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
6 changes: 3 additions & 3 deletions .github/workflows/jira_codex_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ concurrency:

env:
# ---------------- GUARDRAILS ----------------
ALLOWED_JIRA_PROJECT_KEYS: "ABC,DEF" # comma-separated
ALLOWED_JIRA_PROJECT_KEYS: "BDMS" # comma-separated
ALLOWED_ISSUE_TYPES: "Story,Bug,Task" # comma-separated
REQUIRED_LABEL: "codex" # require this label on the Jira issue
REQUIRED_CUSTOM_FIELD_ID: "" # optional; e.g. "customfield_12345" (leave empty to disable)

# ---------------- BRANCH/PR ----------------
BASE_BRANCH: "main"
BASE_BRANCH: "staging"
Comment on lines +18 to +24
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description is empty (only contains the template). Please fill in the Why, How, and Notes sections to explain:

  • Why ALLOWED_JIRA_PROJECT_KEYS changed from "ABC,DEF" to "BDMS"
  • Why BASE_BRANCH changed from "main" to "staging"
  • Why the staging environment was added
  • Whether this is intended to target staging deployments for all Jira-automated PRs going forward

This context is important for reviewers to understand the business rationale and ensure the changes align with team processes.

Copilot uses AI. Check for mistakes.
BRANCH_PREFIX: "jira"
MAX_TITLE_SLUG_LEN: "40"

Expand All @@ -38,7 +38,7 @@ jobs:
implement:
runs-on: ubuntu-latest
timeout-minutes: 60

environment: staging
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
Loading