From 096da3328272e7d8cf817af43193e895b4b6199d Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Mon, 25 Aug 2025 23:00:37 +0500 Subject: [PATCH] fix(workflow): allow to write files to the repo --- .github/workflows/extract.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/extract.yml b/.github/workflows/extract.yml index 6a0a05a..ddd5bf3 100644 --- a/.github/workflows/extract.yml +++ b/.github/workflows/extract.yml @@ -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