Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dummy change #38

Closed
wants to merge 2 commits into from
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
3 changes: 3 additions & 0 deletions .github/workflows/deflake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
deflake:
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
runs-on: ubuntu-latest
permissions:
# "Write" to Actions to enable rerun command.
actions: write

steps:
- name: Check run count and re-run workflow
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/selenium-lab-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ jobs:
name: Pre-build Player
needs: compute-sha
runs-on: ubuntu-latest

permissions:
# "Write" to statuses to update commit status
statuses: write

steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -209,6 +214,10 @@ jobs:
# lab's Selenium grid on port 4444.
runs-on: self-hosted-selenium

permissions:
# "Write" to statuses to update commit status
statuses: write

# Only one run of this job is allowed at a time, since it uses physical
# resources in our lab.
concurrency:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sync-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ on:
jobs:
sync-labels:
runs-on: ubuntu-latest

permissions:
# "Write" to Issues to manage labels for the repo
issues: write

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/update-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ on:
# Run every 30 minutes
- cron: '*/30 * * * *'

permissions:
issues: write
pull-requests: write

jobs:
update-issues:
runs-on: ubuntu-latest

permissions:
# "Write" to Issues to add labels, milestones, comments, etc.
issues: write
# "Write" to Pull Requests for the same.
pull-requests: write

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/update-screenshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
name: Set Pending Status
needs: compute-sha
runs-on: ubuntu-latest

permissions:
# "Write" to statuses to update commit status
statuses: write

steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -107,6 +112,11 @@ jobs:
set-final-status:
name: Set Final Status
runs-on: ubuntu-latest

permissions:
# "Write" to statuses to update commit status
statuses: write

needs: [compute-sha, run-lab-tests, update-pr]
# Will run on success or failure, but not if the workflow is cancelled.
if: ${{ success() || failure() }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ![Shaka Player](docs/shaka-player-logo.png)


Shaka Player is an open-source JavaScript library for adaptive media. It plays
adaptive media formats (such as [DASH][], [HLS][] and [MSS][]) in a browser,
without using plugins or Flash. Instead, Shaka Player uses the open web
Expand Down
Loading