forked from lthn/blockchain
Update workflow permissions to contents: write
Changed GitHub Actions workflow permissions from 'contents: read' to 'contents: write' in all relevant workflow files. This allows workflows to perform write operations on repository contents, which may be required for certain actions or automation steps.
This commit is contained in:
parent
23af6b9caa
commit
aad1b72b3d
4 changed files with 4 additions and 4 deletions
2
.github/workflows/_on-pr-fast.yml
vendored
2
.github/workflows/_on-pr-fast.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: PR Fast
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
|
|
|||
2
.github/workflows/_on-pr.yml
vendored
2
.github/workflows/_on-pr.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: PR
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
|
|
|||
2
.github/workflows/_on-push.yml
vendored
2
.github/workflows/_on-push.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Push Compile
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
packages: write
|
||||
on:
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
|
|
|
|||
2
.github/workflows/_on-release.yml
vendored
2
.github/workflows/_on-release.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Push Full Build
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue