fix(workflow): allow to write files to the repo

This commit is contained in:
Vitaly Gashkov
2025-08-25 23:00:37 +05:00
parent c589d1d6da
commit 096da33282
+6 -1
View File
@@ -6,9 +6,14 @@ on:
- cron: '0 4 * * 1' # Runs every Monday at 04:00 UTC
jobs:
decompile:
extract:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4