Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
jobs:
setup-matrix:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'

outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

test:
runs-on: ubuntu-latest
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'
needs: setup-matrix

strategy:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

dangerbot:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' && github.event_name == 'pull_request'
if: (github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped') && github.event_name == 'pull_request'

needs:
- test
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:

scripts:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/UpdateCodeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-and-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
dprint-fmt:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghostbuster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: write # for Git to git push
pull-requests: write # for peter-evans/create-pull-request to create a PR
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-md.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
jobs:
lint-md:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/actions/setup-for-scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pnpm-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
create-cache:
runs-on: ubuntu-latest
if: ${{ github.repository == 'DefinitelyTyped/DefinitelyTyped' }}
if: ${{ github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/support-window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
support-window:
permissions:
contents: write # for Git to git push
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' || github.repository == 'prajalg/DefinitelyTyped'
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
Loading
Loading