Skip to content

Commit 1783de9

Browse files
committed
Revert "Pointing GHA to issue branch"
This reverts commit 8237632. [skip ci]
1 parent a3311c4 commit 1783de9

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/build-and-test-windows.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 2
2323
steps:
2424
- name: Remove Run Windows Build Label
25-
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@renovate/all-dependencies
25+
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev
2626
with:
2727
# The token is necessary to be able to remove the label even if the workflow is triggered by a pull request
2828
# coming from a fork.
@@ -36,7 +36,7 @@ jobs:
3636
github.event.label.name == 'run-windows-build' ||
3737
(github.event.review.state == 'APPROVED' && contains(github.event.pull_request.labels.*.name, 'requires-windows-build')))
3838
name: Build and Test Windows - root solution (larger runners)
39-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
39+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
4040
with:
4141
parent-job-name: root-solution-larger-runners
4242
machine-types: '["warp-windows-2025-x64-8x"]'
@@ -61,7 +61,7 @@ jobs:
6161
build-and-test-standard-runners:
6262
if: github.ref_name == github.event.repository.default_branch
6363
name: Build and Test Windows - root solution (standard runners)
64-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
64+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
6565
with:
6666
parent-job-name: root-solution-standard-runners
6767
# Since dev builds are not awaited by anyone, they can run on the slower free runners.
@@ -88,7 +88,7 @@ jobs:
8888
github.event.label.name == 'run-windows-build' ||
8989
(github.event.review.state == 'APPROVED' && contains(github.event.pull_request.labels.*.name, 'requires-windows-build'))
9090
name: Build and Test Windows - NuGetTest solution
91-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
91+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
9292
with:
9393
parent-job-name: nuget-solution
9494
machine-types: '["windows-2025"]'
@@ -115,7 +115,7 @@ jobs:
115115
github.event.label.name == 'run-windows-build' ||
116116
(github.event.review.state == 'APPROVED' && contains(github.event.pull_request.labels.*.name, 'requires-windows-build'))
117117
name: Lint Assets
118-
uses: Lombiq/GitHub-Actions/.github/workflows/asset-lint.yml@renovate/all-dependencies
118+
uses: Lombiq/GitHub-Actions/.github/workflows/asset-lint.yml@dev
119119

120120
powershell-static-code-analysis:
121121
if: github.ref_name == github.event.repository.default_branch ||
@@ -132,7 +132,7 @@ jobs:
132132
name: Post Pull Request Checks Automation
133133
needs: [build-and-test-larger-runners, build-and-test-nuget-test, powershell-static-code-analysis]
134134
if: github.event.pull_request != ''
135-
uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@renovate/all-dependencies
135+
uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@dev
136136
secrets:
137137
JIRA_BASE_URL: ${{ secrets.DEFAULT_JIRA_BASE_URL }}
138138
JIRA_USER_EMAIL: ${{ secrets.DEFAULT_JIRA_USER_EMAIL }}
@@ -146,7 +146,7 @@ jobs:
146146
needs: [build-and-test-larger-runners, build-and-test-nuget-test, asset-lint, powershell-static-code-analysis]
147147
steps:
148148
- name: Remove Windows Build Warning Label
149-
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@renovate/all-dependencies
149+
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev
150150
with:
151151
# The token is necessary to be able to remove the label even if the workflow is triggered by a pull request
152152
# coming from a fork.

.github/workflows/build-and-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-and-test-larger-runners:
1212
if: github.ref_name != github.event.repository.default_branch
1313
name: Build and Test - root solution (larger runners)
14-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
14+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
1515
with:
1616
parent-job-name: root-solution-larger-runners
1717
machine-types: '["warp-ubuntu-2404-x64-4x"]'
@@ -31,7 +31,7 @@ jobs:
3131
build-and-test-standard-runners:
3232
if: github.ref_name == github.event.repository.default_branch
3333
name: Build and Test - root solution (standard runners)
34-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
34+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
3535
with:
3636
# Since dev builds are not awaited by anyone, they can run on the slower free runners.
3737
parent-job-name: root-solution-standard-runners
@@ -50,7 +50,7 @@ jobs:
5050

5151
build-and-test-nuget-test:
5252
name: Build and Test - NuGetTest solution
53-
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@renovate/all-dependencies
53+
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
5454
with:
5555
parent-job-name: nuget-solution
5656
build-directory: NuGetTest
@@ -63,11 +63,11 @@ jobs:
6363

6464
codespell:
6565
name: Codespell
66-
uses: Lombiq/GitHub-Actions/.github/workflows/codespell.yml@renovate/all-dependencies
66+
uses: Lombiq/GitHub-Actions/.github/workflows/codespell.yml@dev
6767

6868
asset-lint:
6969
name: Lint Assets
70-
uses: Lombiq/GitHub-Actions/.github/workflows/asset-lint.yml@renovate/all-dependencies
70+
uses: Lombiq/GitHub-Actions/.github/workflows/asset-lint.yml@dev
7171

7272
powershell-static-code-analysis:
7373
name: PowerShell Static Code Analysis
@@ -77,7 +77,7 @@ jobs:
7777

7878
yaml-linting:
7979
name: YAML Linting
80-
uses: Lombiq/GitHub-Actions/.github/workflows/yaml-lint.yml@renovate/all-dependencies
80+
uses: Lombiq/GitHub-Actions/.github/workflows/yaml-lint.yml@dev
8181
with:
8282
config-file-path: tools/Lombiq.GitHub.Actions/.trunk/configs/.yamllint.yaml
8383
search-path: .
@@ -86,7 +86,7 @@ jobs:
8686
name: Post Pull Request Checks Automation
8787
needs: [build-and-test-larger-runners, build-and-test-nuget-test, codespell, asset-lint, powershell-static-code-analysis]
8888
if: github.event.pull_request != ''
89-
uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@renovate/all-dependencies
89+
uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@dev
9090
secrets:
9191
JIRA_BASE_URL: ${{ secrets.DEFAULT_JIRA_BASE_URL }}
9292
JIRA_USER_EMAIL: ${{ secrets.DEFAULT_JIRA_USER_EMAIL }}
@@ -100,7 +100,7 @@ jobs:
100100
needs: [build-and-test-larger-runners, build-and-test-nuget-test, powershell-static-code-analysis]
101101
steps:
102102
- name: Add Windows Build Warning Label
103-
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@renovate/all-dependencies
103+
uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev
104104
with:
105105
# The token is necessary to be able to add the label even if the workflow is triggered by a pull request
106106
# coming from a fork.

0 commit comments

Comments
 (0)