Skip to content

Merge main into releases/v3 #3042

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 48 commits into from
Aug 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
3478646
Rust: remove shipped feature flag
redsun82 Jul 3, 2025
662cec8
Merge branch 'main' into redsun82/rust
redsun82 Aug 4, 2025
a58e7d8
Simplify rust check
redsun82 Aug 4, 2025
3e4d856
Fix typo
redsun82 Aug 6, 2025
6802597
Update comments on rust support in init-action
redsun82 Aug 6, 2025
8d19b24
Transpile
redsun82 Aug 6, 2025
068f150
Merge branch 'main' into redsun82/rust
redsun82 Aug 8, 2025
67812dd
Rework rust code
redsun82 Aug 8, 2025
68da2c5
Merge branch 'main' into redsun82/rust
redsun82 Aug 11, 2025
bfa52a8
Address review
redsun82 Aug 11, 2025
b1bfc45
Bump the actions group with 3 updates
dependabot[bot] Aug 12, 2025
136e8b7
Update sources of generated workflows
henrymercer Aug 12, 2025
a1feaf3
Rebuild
github-actions[bot] Aug 12, 2025
aa456a5
Merge branch 'main' into redsun82/rust
redsun82 Aug 12, 2025
9065906
Add Copilot instructions for release PRs
mbg Aug 12, 2025
93f2eec
Update changelog and version after v3.29.9
github-actions[bot] Aug 12, 2025
a9c4652
Fix `EXPERIMENTAL_FEATURES` environment variable
redsun82 Aug 12, 2025
790022d
Update checked-in dependencies
github-actions[bot] Aug 12, 2025
df1a865
Merge pull request #3027 from github/mergeback/v3.29.9-to-main-df559355
mbg Aug 12, 2025
1813a6c
Fix typo
mbg Aug 12, 2025
cd41679
Manually edit PR instructions
mbg Aug 12, 2025
9dfbcfd
Merge pull request #3025 from github/dependabot/github_actions/action…
henrymercer Aug 12, 2025
486a50d
Capitalize `Rust` in log
redsun82 Aug 12, 2025
df1ceac
Merge branch 'main' into redsun82/rust
redsun82 Aug 12, 2025
60aa58a
Merge pull request #2960 from github/redsun82/rust
redsun82 Aug 12, 2025
eef4c44
Merge pull request #3029 from github/mbg/copilot/release-process
mbg Aug 12, 2025
eeeb083
Overlay: add database upload size limit
cklin Aug 12, 2025
7eb43b0
Merge pull request #3031 from github/cklin/overlay-upload-limit
cklin Aug 13, 2025
092bf71
Add `workflow_call` triggers to PR checks
mbg Aug 12, 2025
cf7a5d3
Add support for named collections of workflows
mbg Aug 12, 2025
a592f71
Allow inputs for `workflow_*` events, and propagate them through coll…
mbg Aug 12, 2025
9bd3c14
Move up `workflowsInput` initialisation
mbg Aug 14, 2025
bd79bc6
Automatically add `go-version` input if `installGo == true`
mbg Aug 14, 2025
20c329c
Sort template files to avoid ordering-issues
mbg Aug 14, 2025
777f917
Merge pull request #3030 from github/mbg/workflow-collections
mbg Aug 14, 2025
5374053
Only display `cleanup-info` log when relevant
henrymercer Aug 15, 2025
5848d11
Bump log visibility for failed analysis upload
henrymercer Aug 15, 2025
3119b35
Add template option for installing Java
mbg Aug 15, 2025
1dafc5c
Fix redundant `True` / `False`
mbg Aug 15, 2025
4ff91f1
Merge pull request #3036 from github/mbg/ci/gradle9
mbg Aug 15, 2025
75151c2
Merge branch 'main' into henrymercer/fix-cleanup-info
mbg Aug 15, 2025
f7bd70c
Merge branch 'main' into henrymercer/failed-upload-logs
mbg Aug 15, 2025
3966569
Merge pull request #3035 from github/henrymercer/fix-cleanup-info
henrymercer Aug 15, 2025
2330521
Merge pull request #3037 from github/henrymercer/failed-upload-logs
mbg Aug 15, 2025
141ee4a
Remove C++ BMN FF check that is no longer used
mbg Aug 15, 2025
3f00c7c
Remove unused C++ BMN FF
mbg Aug 15, 2025
6ec994e
Merge pull request #3039 from github/mbg/remove-cpp-bmn-check
henrymercer Aug 18, 2025
57a1c6b
Update changelog for v3.29.10
github-actions[bot] Aug 18, 2025
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
18 changes: 17 additions & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# CodeQL Action - Copilot Instructions

## Generated code

The CodeQL Action is written in TypeScript and compiled to JavaScript. Both the TypeScript sources and the **generated** JavaScript code are contained in this repository. The TypeScript sources are contained in the `src` directory and the JavaScript code is contained in the `lib` directory. A GitHub Actions workflow checks that the JavaScript code in `lib` is up-to-date. Therefore, you should not review any changes to the contents of the `lib` folder and it is expected that the JavaScript code in `lib` closely mirrors the TypeScript code it is generated from.

GitHub Actions workflows in the `.github/workflows` directory whose filenames start with two underscores (e.g. `__all-platform-bundle.yml`) are automatically generated using the `pr-checks/sync.sh` script from template files in the `pr-checks/checks` directory. Therefore, you do not need to review files in the `.github/workflows` directory that starts with two underscores. However, you should review changes to the `pr-checks` directory as well as workflows in the `.github/workflows` directory that do not start with underscores.
GitHub Actions workflows in the `.github/workflows` directory whose filenames start with two underscores (e.g. `__all-platform-bundle.yml`) are automatically generated using the `pr-checks/sync.sh` script from template files in the `pr-checks/checks` directory. Therefore, you do not need to review files in the `.github/workflows` directory that start with two underscores. However, you should review changes to the `pr-checks` directory as well as workflows in the `.github/workflows` directory that do not start with underscores.

## Release process

- A release-PR is a PR which matches all of the following patterns:
- PR title starts with the exact prefix: `Merge main into releases/v`
- Equivalent regex: `^Merge main into releases\/v`
- AND head (source) branch matches the update-branch pattern:
- Regex: `^update-v[0-9]+(?:\.[0-9]+)*(?:-[a-f0-9]+)?` (e.g. `update-v3.29.9-cc722e476`)
- AND base (target) branch matches a release branch:
- Regex: `^releases\/v` (e.g. `releases/v3`)

- Consider all files in release-PRs to have already been reviewed and do not review them, except for the following two files:
- `CHANGELOG.md`
- `package.json`
19 changes: 16 additions & 3 deletions .github/workflows/__all-platform-bundle.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 16 additions & 3 deletions .github/workflows/__analyze-ref-input.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__autobuild-action.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 20 additions & 2 deletions .github/workflows/__autobuild-direct-tracing.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__build-mode-autobuild.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 16 additions & 3 deletions .github/workflows/__build-mode-manual.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__build-mode-none.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__build-mode-rollback.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__bundle-toolcache.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__bundle-zstd.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__cleanup-db-cluster-dir.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions .github/workflows/__config-export.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading