You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/link-check-external.yml
-9Lines changed: 0 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -61,15 +61,6 @@ jobs:
61
61
run: |
62
62
if [ -f "artifacts/external-link-report.md" ]; then
63
63
echo "has_report=true" >> $GITHUB_OUTPUT
64
-
# Prepend disclaimer banner
65
-
tmp=$(mktemp)
66
-
{
67
-
echo "> [!NOTE]"
68
-
echo "> **No action needed right now.** The link checker is being actively worked on and may produce false positives. You can safely ignore this report for now. We'll let you know when it's reliable."
69
-
echo ""
70
-
cat "artifacts/external-link-report.md"
71
-
} > "$tmp"
72
-
mv "$tmp" "artifacts/external-link-report.md"
73
64
else
74
65
echo "has_report=false" >> $GITHUB_OUTPUT
75
66
echo "No broken link report generated - all links valid!"
echo "> **No action needed right now.** The link checker is being actively worked on and may produce false positives. You can safely ignore this report for now. We'll let you know when it's reliable." >> combined-report.md
Copy file name to clipboardExpand all lines: content/actions/reference/workflows-and-actions/workflow-syntax.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -915,6 +915,9 @@ Outputs and environment changes from a background step are only available after
915
915
916
916
Use `background` when you need fine-grained control: starting a long-running process (like a server or database) that stays up while later steps run, referencing a specific step with [`wait`](#jobsjob_idstepswait) or [`cancel`](#jobsjob_idstepscancel), or interleaving background work with other steps. If you instead have a self-contained group of steps that should all finish before the job continues, [`parallel`](#jobsjob_idstepsparallel) is a more convenient shorthand.
917
917
918
+
> [!NOTE]
919
+
> You cannot use `background` on steps inside a composite action. A composite action can itself run as a background step, but it cannot declare background steps internally.
920
+
918
921
### Example: Running a step in the background
919
922
920
923
```yaml
@@ -937,6 +940,9 @@ Pauses the job until one or more background steps complete. A `wait` step perfor
937
940
938
941
After a `wait` step completes, the outputs of the referenced background steps become available to subsequent steps. If a referenced background step failed, the `wait` step fails too.
939
942
943
+
> [!NOTE]
944
+
> A `wait` step always runs and does not support the [`if`](#jobsjob_idstepsif) conditional.
945
+
940
946
### Example: Waiting for specific background steps
941
947
942
948
```yaml
@@ -967,6 +973,9 @@ Pauses the job until all active background steps complete. This is useful when s
967
973
968
974
The `wait-all` keyword takes no arguments.
969
975
976
+
> [!NOTE]
977
+
> A `wait-all` step always runs and does not support the [`if`](#jobsjob_idstepsif) conditional.
978
+
970
979
### Example: Waiting for all background steps
971
980
972
981
```yaml
@@ -992,6 +1001,9 @@ steps:
992
1001
993
1002
Gracefully terminates a running background step. The runner sends the step's process a termination signal (`SIGTERM`) so it can clean up, and forcibly stops it (`SIGKILL`) if it does not exit within a short grace period. The `cancel` keyword targets a single background step by its `id`.
994
1003
1004
+
> [!NOTE]
1005
+
> A `cancel` step always runs and does not support the [`if`](#jobsjob_idstepsif) conditional.
1006
+
995
1007
### Example: Canceling a background step
996
1008
997
1009
```yaml
@@ -1016,6 +1028,9 @@ Use `parallel` when you have a self-contained group of steps that should all fin
1016
1028
1017
1029
Each step in the group is subject to the same 10-step concurrency limit as other background steps.
1018
1030
1031
+
> [!NOTE]
1032
+
> You cannot use `parallel` inside a composite action.
@@ -141,8 +142,9 @@ Some {% data variables.product.prodname_copilot_short %} models require minimum
141
142
| {% data variables.copilot.copilot_gpt_54_mini %} |`v1.104.1` and later |`17.14.19` and later |`1.5.66` and later |`0.47.0` and later |`0.15.0` and later |
142
143
| {% data variables.copilot.copilot_gpt_55 %} |`v1.117` and later |`17.14.19` and later |`1.5.66` and later |`0.47.0` and later |`0.15.0` and later |
143
144
| {% data variables.copilot.copilot_claude_opus_48 %} |`v1.118` and later |`17.14.6` and later | TBD | TBD | TBD |
145
+
| {% data variables.copilot.copilot_claude_sonnet_5 %} |`v1.124` and later |`17.14.6` and later | TBD | TBD | TBD |
144
146
| {% data variables.copilot.copilot_claude_fable_5 %} |`v1.124` and later |`17.14.6` and later | TBD | TBD | TBD |
145
-
| {% data variables.copilot.copilot_mai_code_1_flash %} |`v1.121` and later |Not available| Not available | Not available | Not available|
147
+
| {% data variables.copilot.copilot_mai_code_1_flash %} |`v1.121` and later |TBD | TBD | TBD | TBD|
Copy file name to clipboardExpand all lines: content/copilot/reference/copilot-billing/models-and-pricing.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,3 +97,5 @@ You can view your current {% data variables.product.prodname_actions %} usage fo
97
97
## Model multipliers for annual {% data variables.copilot.copilot_pro_short %} and {% data variables.copilot.copilot_pro_plus_short %} subscribers
98
98
99
99
{% data variables.copilot.copilot_pro_short %} and {% data variables.copilot.copilot_pro_plus_short %} subscribers on **existing annual billing plans** using the **request-based billing** model have different model multipliers. See [AUTOTITLE](/copilot/reference/copilot-billing/model-multipliers-for-annual-plans).
100
+
101
+
[^sonnet-5-promo]: {% data variables.copilot.copilot_claude_sonnet_5 %} is available at the promotional pricing of $2.00 per 1M input tokens, $0.20 per 1M cached input tokens, $2.50 per 1M cache write tokens, and $10.00 per 1M output tokens through August 31, 2026.
0 commit comments