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

Set token permissions in workflows. #974

Merged
merged 1 commit into from
Jan 23, 2024
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: 2 additions & 1 deletion .github/workflows/linux_auto_assign_author.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Automatically assigns the author who created the PR to the Assignees in GitHub.
name: PR Author Assign
permissions: read-all

on:
pull_request_target:
Expand All @@ -14,4 +15,4 @@ jobs:
steps:
- uses: toshimaru/[email protected]
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1 change: 1 addition & 0 deletions .github/workflows/linux_clang_format_check.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Clang format check"
permissions: read-all

on:
push:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linux_publish_api_docs.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Build and Publish API Documentation"
permissions: read-all

on:
push:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_auto_roll.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# once the integration tests become green.
# Any new dependencies in .\DEPS should also be added here.
name: 'Auto Roll DEPS'
permissions: read-all

on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_cmake_msvc_dbg.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 CMake/MSVC (Debug)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_cmake_msvc_rel.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 CMake/MSVC (Release)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_clang_dbg.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/Clang (Debug)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_clang_dbg_dawn.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/Clang WebGPU/Dawn (Debug)
permissions: read-all

on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_clang_rel.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/Clang (Release)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_clang_rel_dawn.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/Clang WebGPU/Dawn (Release)
permissions: read-all

on:
push:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_msvc_dbg.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/MSVC (Debug)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x64_gn_msvc_rel.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x64 GN/MSVC (Release)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x86_gn_clang_dbg.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x86 GN/Clang (Debug)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/win_x86_gn_clang_rel.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Windows x86 GN/Clang (Release)
permissions: read-all

on:
# This is a required workflow specified in branch enforcement
Expand Down
Loading