Skip to content

Commit dd3342e

Browse files
authored
Merge queue Infrastructure in sqlparser-rs (#2007)
1 parent cff2833 commit dd3342e

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.asf.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,17 @@ github:
3636
rebase: false
3737
features:
3838
issues: true
39+
protected_branches:
40+
main:
41+
required_status_checks:
42+
contexts:
43+
- "codestyle"
44+
- "lint"
45+
- "benchmark-lint"
46+
- "compile"
47+
- "docs"
48+
- "compile-no-std"
49+
- "test (stable)"
50+
- "test (beta)"
51+
- "test (nightly)"
52+
- "Release Audit Tool (RAT)"

.github/workflows/license.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ on:
2323
branches:
2424
- main
2525
pull_request:
26+
merge_group:
2627

2728
jobs:
2829

.github/workflows/rust.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,20 @@
1717

1818
name: Rust
1919

20-
on: [push, pull_request]
20+
on:
21+
push:
22+
# When PR is in the Merge Queue, GitHub will create a temporary branch - but we already have a
23+
# CI running because of `merge_group`
24+
# https://github.com/orgs/community/discussions/15254
25+
branches-ignore:
26+
- 'gh-readonly-queue/**'
27+
pull_request:
28+
merge_group:
2129

2230
permissions:
2331
contents: read
2432

2533
jobs:
26-
2734
codestyle:
2835
runs-on: ubuntu-latest
2936
steps:

src/keywords.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
//! This module defines
18+
//! This module defines:
1919
//! 1) a list of constants for every keyword
2020
//! 2) an `ALL_KEYWORDS` array with every keyword in it
2121
//! This is not a list of *reserved* keywords: some of these can be

0 commit comments

Comments
 (0)