Skip to content

Commit 91c18f3

Browse files
committed
fix: adapt owner in workflows after repo transfer
1 parent 77809df commit 91c18f3

8 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
analyze:
1313
name: Analyze (${{ matrix.language }})
1414
runs-on: 'ubuntu-latest'
15+
if: github.repository == 'eclipse-openvsx/openvsx'
1516
permissions:
1617
# required for all workflows
1718
security-events: write

.github/workflows/gradle-dependency-graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: write
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'eclipse/openvsx'
12+
if: github.repository == 'eclipse-openvsx/openvsx'
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
9595
with:
9696
context: webui
97-
push: ${{ github.repository_owner == 'eclipse' &&
97+
push: ${{ github.repository_owner == 'eclipse-openvsx' &&
9898
github.actor != 'dependabot[bot]' &&
9999
(
100100
github.event_name == 'push' ||
@@ -159,7 +159,7 @@ jobs:
159159
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
160160
with:
161161
context: server
162-
push: ${{ github.repository_owner == 'eclipse' &&
162+
push: ${{ github.repository_owner == 'eclipse-openvsx' &&
163163
github.actor != 'dependabot[bot]' &&
164164
(
165165
github.event_name == 'push' ||

.github/workflows/publish-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
prepare:
17-
if: github.repository == 'eclipse/openvsx'
17+
if: github.repository == 'eclipse-openvsx/openvsx'
1818
runs-on: ubuntu-22.04
1919
outputs:
2020
release-tag: ${{ steps.context.outputs.RELEASE_TAG }}

.github/workflows/publish-webui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
prepare:
17-
if: github.repository == 'eclipse/openvsx'
17+
if: github.repository == 'eclipse-openvsx/openvsx'
1818
runs-on: ubuntu-22.04
1919
outputs:
2020
release-tag: ${{ steps.context.outputs.RELEASE_TAG }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
prepare:
15-
if: github.repository == 'eclipse/openvsx'
15+
if: github.repository == 'eclipse-openvsx/openvsx'
1616
permissions:
1717
contents: none
1818
runs-on: ubuntu-22.04

.github/workflows/scorecard-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: read-all
1515

1616
jobs:
1717
analysis:
18-
if: github.repository_owner == 'eclipse'
18+
if: github.repository_owner == 'eclipse-openvsx'
1919
name: Scorecard analysis
2020
runs-on: ubuntu-latest
2121
permissions:

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'eclipse/openvsx'
12+
if: github.repository == 'eclipse-openvsx/openvsx'
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

0 commit comments

Comments
 (0)