Skip to content

Commit 27fd8a0

Browse files
authored
chore: quote branch names to avoid numeric conversion (#4224)
1 parent 65e0e15 commit 27fd8a0

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and commit docs
22

33
on:
44
push:
5-
branches: [main]
5+
branches: ['main']
66

77
permissions:
88
contents: write

.github/workflows/release-5.x.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [5.x]
3+
branches: ['5.x']
44
workflow_dispatch: {}
55

66
permissions:
@@ -19,7 +19,7 @@ jobs:
1919
- id: release
2020
uses: googleapis/release-please-action@v4
2121
with:
22-
target-branch: 5.x
22+
target-branch: '5.x'
2323

2424
build:
2525
needs: [release_please]
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
release_version: ${{ env.package_version }}
7777
product_name: mongodb
78-
sarif_report_target_ref: 5.x
78+
sarif_report_target_ref: '5.x'
7979
third_party_dependency_tool: n/a
8080
dist_filenames: artifacts/*
8181
token: ${{ github.token }}

.github/workflows/release-6.8.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [6.8]
3+
branches: ['6.8']
44
workflow_dispatch: {}
55

66
permissions:
@@ -19,11 +19,11 @@ jobs:
1919
- id: release
2020
uses: googleapis/release-please-action@v4
2121
with:
22-
target-branch: 6.8
22+
target-branch: '6.8'
2323

2424
build:
2525
needs: [release_please]
26-
name: "Perform any build or bundling steps, as necessary."
26+
name: 'Perform any build or bundling steps, as necessary.'
2727
uses: ./.github/workflows/build.yml
2828

2929
ssdlc:
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
release_version: ${{ env.package_version }}
7777
product_name: mongodb
78-
sarif_report_target_ref: 6.8
78+
sarif_report_target_ref: '6.8'
7979
third_party_dependency_tool: n/a
8080
dist_filenames: artifacts/*
8181
token: ${{ github.token }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main]
3+
branches: ['main']
44
workflow_dispatch: {}
55

66
permissions:
@@ -19,7 +19,7 @@ jobs:
1919
- id: release
2020
uses: googleapis/release-please-action@v4
2121
with:
22-
target-branch: main
22+
target-branch: 'main'
2323

2424
build:
2525
needs: [release_please]
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
release_version: ${{ env.package_version }}
7777
product_name: mongodb
78-
sarif_report_target_ref: main
78+
sarif_report_target_ref: 'main'
7979
third_party_dependency_tool: n/a
8080
dist_filenames: artifacts/*
8181
token: ${{ github.token }}

0 commit comments

Comments
 (0)