Skip to content

Commit b40b1a6

Browse files
committed
fix missing char
Signed-off-by: emdneto <[email protected]>
1 parent d15d048 commit b40b1a6

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/lint.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: ${% raw %}${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: {% raw %}${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/misc.yml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
pull_request:
1111

1212
env:
13-
# Set the SHA to the branch name if the PR has a label 'release' or 'backport' otherwise, set it to 'main'
13+
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: ${% raw %}${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: {% raw %}${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
18-
contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref ||
18+
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'
2020
) || 'main' }}{% endraw %}
2121
CONTRIB_REPO_SHA: main

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/test.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: ${% raw %}${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: {% raw %}${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

.github/workflows/lint_0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: $${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

.github/workflows/misc_0.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
pull_request:
1111

1212
env:
13-
# Set the SHA to the branch name if the PR has a label 'release' or 'backport' otherwise, set it to 'main'
13+
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: $${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
18-
contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref ||
18+
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'
2020
) || 'main' }}
2121
CONTRIB_REPO_SHA: main

.github/workflows/test_0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: $${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

.github/workflows/test_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: $${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

.github/workflows/test_2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# Set the SHA to the branch name if the PR has a label 'release' or 'patch-release' otherwise, set it to 'main'
1414
# For PRs you can change the inner fallback ('main')
1515
# For pushes you change the outer fallback ('main')
16-
CORE_REPO_SHA: $${{ github.event_name == 'pull_request' && (
16+
CORE_REPO_SHA: ${{ github.event_name == 'pull_request' && (
1717
contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.head.ref ||
1818
contains(github.event.pull_request.labels.*.name, 'patch-release') && github.event.pull_request.base.ref ||
1919
'main'

0 commit comments

Comments
 (0)