Skip to content
Merged
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
ci: FIx permissions needed for update node dist files
Signed-off-by: Julius Knorr <jus@bitgrid.net>
  • Loading branch information
juliusknorr authored and backportbot[bot] committed Dec 13, 2025
commit 4def41a2c18d41b34f32aa3861ea31c5c346d018
9 changes: 2 additions & 7 deletions .github/workflows/update-node-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- stable29

permissions:
contents: read
contents: write

concurrency:
group: update-node-dist-${{ github.head_ref || github.ref || github.run_id }}
Expand All @@ -26,9 +26,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
token: ${{ secrets.BOT_GITHUB_TOKEN }}

- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.1
Expand Down Expand Up @@ -79,9 +76,7 @@ jobs:

- name: Add and commit
if: steps.changes.outputs.CHANGED != ''
env:
HEAD_REF: ${{ needs.init.outputs.head_ref }}
run: |
git add --force js/ css/
git commit --signoff -m 'chore(assets): recompile assets'
git push origin "$HEAD_REF"
git push origin ${{ github.head_ref }}
Loading