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

Remedy token permission issue #2888

Merged
merged 2 commits into from
Feb 6, 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: 3 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- develop

# Declare default permissions as read only.
permissions: read-all

jobs:
Build-Docs:
runs-on: ubuntu-20.04
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [published]

# Declare default permissions as read only.
permissions: read-all

jobs:
Build-Docs:
runs-on: ubuntu-20.04
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/perf-accuracy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ on:
- optimize
default: optimize

# Declare default permissions as read only.
permissions: read-all

jobs:
Perf-Accuracy-Benchmark:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/perf-speed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ on:
- optimize
default: optimize

# Declare default permissions as read only.
permissions: read-all

jobs:
Perf-Speed-Benchmark:
name: Perf-Speed-Benchmark-all-py310
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
needs: [build_wheels, build_sdist]
environment: pypi
runs-on: ubuntu-latest
permissions: write-all
permissions:
packages: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ on:
- cron: "0 18 * * 6"
push:
branches: ["develop"]
workflow_dispatch: # run on request (no need for PR)

# Declare default permissions as read only.
permissions: read-all
Expand Down
Loading