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
3 changes: 3 additions & 0 deletions .github/workflows/ci-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_call:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-grid-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
workflow_dispatch:
workflow_call:

permissions:
contents: read

jobs:
grid-ui-tests:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_call:
workflow_dispatch:

permissions:
contents: read

jobs:
browser-tests-windows:
name: Browser Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_call:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci-rbe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: read
packages: read

jobs:
format:
name: Format
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-renovate-rbe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ on:
- renovate/*
workflow_dispatch:

permissions:
contents: read

jobs:
pin:
permissions:
contents: write # for pushing repinned dependencies
runs-on: ubuntu-latest
if: github.repository_owner == 'seleniumhq'
steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_call:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
required: true
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
check:
name: Check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
issues:
types: [ opened ]

permissions:
contents: read

jobs:
label-issues:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mirror-selenium-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
- cron: '0 */12 * * *'
workflow_dispatch:

permissions:
contents: read

jobs:
build:
if: github.repository_owner == 'seleniumhq'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ on:
type: string
default: "all"

permissions:
contents: read

jobs:
ruby:
if: (github.repository_owner == 'seleniumhq') && (inputs.language == 'ruby' || inputs.language == 'all' || github.event_name == 'schedule')
Expand Down Expand Up @@ -147,6 +150,8 @@ jobs:
grid:
if: (github.repository_owner == 'seleniumhq') && (inputs.language == 'grid' || inputs.language == 'all' || github.event_name == 'schedule')
name: Grid
permissions:
contents: write # for creating nightly GitHub release
uses: ./.github/workflows/bazel.yml
with:
name: Nightly Grid Release
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pin-browsers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
- cron: 10 0 * * *
workflow_dispatch:

permissions:
contents: read

jobs:
update:
name: Update Pinned Browsers
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
- stable
- early-stable

permissions:
contents: read

jobs:
update-rust:
name: Update Rust Version
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/stage-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

permissions:
contents: read

jobs:
github-release:
if: >
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-docs-after-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
paths:
- 'docs/api/**'

permissions:
contents: read

jobs:
parse-pr-title:
runs-on: ubuntu-latest
Expand Down
Loading