From 9f9eeadaff3e4da32004023cef4caf12b3139d14 Mon Sep 17 00:00:00 2001 From: Rachael Rose Renk <91027132+rachaelrenk@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:27:35 -0600 Subject: [PATCH 1/2] Tweak wording related to rate limit ticket priority (#49668) --- .../learning-about-github-support/about-ticket-priority.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/support/learning-about-github-support/about-ticket-priority.md b/content/support/learning-about-github-support/about-ticket-priority.md index 0e6fcc898a1b..9626a2c4cd4d 100644 --- a/content/support/learning-about-github-support/about-ticket-priority.md +++ b/content/support/learning-about-github-support/about-ticket-priority.md @@ -32,7 +32,7 @@ Ticket priority helps to ensure that support requests are handled in order, and | :---: | --- | --- | | {% data variables.product.support_ticket_priority_urgent %}

([{% data variables.contact.premium_support %}](/support/learning-about-github-support/about-github-premium-support) only) | Production workflows for your organization or enterprise on {% data variables.product.prodname_ghe_cloud %} are failing due to critical service errors or outages, and the failure directly impacts the operation of your business. | | | {% data variables.product.support_ticket_priority_high %} | Account or security issues with your organization or enterprise on {% data variables.product.prodname_ghe_cloud %} are causing limited impact to your business. | | -| {% data variables.product.support_ticket_priority_normal %} | Members of your organization or enterprise on {% data variables.product.prodname_ghe_cloud %} are experiencing limited or moderate issues with {% data variables.product.prodname_dotcom_the_website %}, or you have general concerns or questions about your organization or enterprise. | | +| {% data variables.product.support_ticket_priority_normal %} | Members of your organization or enterprise on {% data variables.product.prodname_ghe_cloud %} are experiencing limited or moderate issues with {% data variables.product.prodname_dotcom_the_website %}, or you have general concerns or questions about your organization or enterprise. | | | {% data variables.product.support_ticket_priority_low %} | You have a question or suggestion about your organization or enterprise on {% data variables.product.prodname_ghe_cloud %} that is not time-sensitive, or does not otherwise block the productivity of your team. | | {% endif %} @@ -42,7 +42,7 @@ Ticket priority helps to ensure that support requests are handled in order, and | :---: | --- | --- | | {% data variables.product.support_ticket_priority_urgent %} | {% data variables.product.prodname_ghe_server %} is failing in a production environment, and the failure directly impacts the operation of your business.

_{% data reusables.support.priority-urgent-english-only %}_ | | | {% data variables.product.support_ticket_priority_high %} | {% data variables.product.prodname_ghe_server %} is failing in a production environment, but impact on your business is limited. | | -| {% data variables.product.support_ticket_priority_normal %} | You're experiencing limited or moderate issues with {% data variables.product.prodname_ghe_server %}, or you have general concerns or questions about the operation of your instance. | | +| {% data variables.product.support_ticket_priority_normal %} | You're experiencing limited or moderate issues with {% data variables.product.prodname_ghe_server %}, or you have general concerns or questions about the operation of your instance. | | | {% data variables.product.support_ticket_priority_low %} | You have a question or suggestion about {% data variables.product.prodname_ghe_server %} that is not time-sensitive, or does not otherwise block the productivity of your team. | | {% endif %} From 492f2fc88d2f871883b0f8c7400c966fc6e119b4 Mon Sep 17 00:00:00 2001 From: Chad Fawcett Date: Wed, 13 Mar 2024 13:30:03 -0700 Subject: [PATCH 2/2] Audit Variables Workflow Examples (#49673) --- content/actions/learn-github-actions/variables.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/actions/learn-github-actions/variables.md b/content/actions/learn-github-actions/variables.md index f6f72d0fef09..23b3247f2448 100644 --- a/content/actions/learn-github-actions/variables.md +++ b/content/actions/learn-github-actions/variables.md @@ -233,6 +233,10 @@ However, you cannot use runner environment variables in parts of a workflow that {% raw %} ```yaml copy +name: Conditional env variable + +on: workflow_dispatch + env: DAY_OF_WEEK: Monday @@ -369,6 +373,8 @@ You can write a single workflow file that can be used for different operating sy {% raw %} ```yaml copy +on: workflow_dispatch + jobs: if-Windows-else: runs-on: macos-latest