Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
pull_request_target:
types: ["labeled", "closed"]

permissions:
contents: read
pull-requests: write

jobs:
backport:
name: Backport PR
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/changesets-publish-npm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
# gets all publishable npm packages.
fetch-package-info:
permissions:
contents: read
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.query-packages.outputs.matrix }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
- "SignallingWebServer/**"
- "Extras/**"

permissions:
contents: write

jobs:
streaming-test-linux:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-image-sfu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- ".github/workflow/healthcheck-image-sfu.yml"
- "SFU/**"

permissions:
contents: read

jobs:
build-docker-image:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-image-wilbur.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- ".github/workflows/healthcheck-image-wilbur.yml"
- "SignallingWebServer/**"

permissions:
contents: read

jobs:
build-docker-image:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- "Frontend/ui-library/**"
- "Frontend/implementations/typescript/**"

permissions:
contents: read

jobs:
build-using-local-deps:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-libs-with-public-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
commitsha:
description: "Commit SHA for the release (if blank use latest on this branch)"

permissions:
contents: read

env:
commitsha: "${{ github.event.inputs.commitsha || github.sha }}"

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/healthcheck-markdown-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
# schedule:
# - cron: '0 0 * * *'

permissions:
contents: read
issues: write

jobs:
linkChecker:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-platform-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- ".github/workflows/healthcheck-platform-scripts.yml"
- "SignallingWebServer/**"

permissions:
contents: read

jobs:
run-script-linux:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/healthcheck-signalling-protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- "SignallingWebServer/**"
- "Extras/SS_Test/**"

permissions:
contents: read

jobs:
signalling-protocol-test:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/healthcheck-streaming.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Check health of streaming

permissions:
contents: read

on:
workflow_dispatch:
push:
Expand All @@ -17,6 +14,9 @@ on:
- "SignallingWebServer/**"
- "Extras/**"

permissions:
contents: read

jobs:
# Uncomment when we can Linux test to capture a non-black screenshot using software renderer.
# streaming-test-linux:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-sfu-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
paths:
- 'SFU/package.json'

permissions:
contents: write

jobs:
signalling-server-image:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ on:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read
issues: write
pull-requests: write

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v8
with:
Expand Down