diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml
index 65d1d43a83..24ee2de794 100644
--- a/.github/workflows/tag-release.yaml
+++ b/.github/workflows/tag-release.yaml
@@ -37,7 +37,12 @@ jobs:
- name: Update Tag
uses: actions/github-script@v7.0.1
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ # use a real access token instead of GITHUB_TOKEN default.
+ # required so that the results of this tag creation can trigger the build workflow
+ # https://stackoverflow.com/a/71372524
+ # https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
+ # this token will need to be renewed anually in January
+ github-token: ${{ secrets.LL_TAG_RELEASE_TOKEN }}
script: |
github.rest.git.createRef({
owner: context.repo.owner,
diff --git a/indra/llcommon/llerror.h b/indra/llcommon/llerror.h
index b4bc3d1db6..fc2cd69836 100644
--- a/indra/llcommon/llerror.h
+++ b/indra/llcommon/llerror.h
@@ -320,6 +320,7 @@ namespace LLError
class LLUserWarningMsg
{
public:
+ // error codes, tranlates to last_exec states like LAST_EXEC_OTHER_CRASH
typedef enum
{
ERROR_OTHER = 0,
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index fb7f6a124b..f790953cb2 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -16874,7 +16874,7 @@ Change of this parameter will affect the layout of buttons in notification toast
UpdaterWillingToTest