1
0
Fork 0
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:
Snider 2025-09-30 15:13:43 +01:00
parent 23af6b9caa
commit aad1b72b3d
4 changed files with 4 additions and 4 deletions

View file

@ -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:

View file

@ -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:

View file

@ -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

View file

@ -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: