Skip to content

Commit 135a10f

Browse files
committed
ci: Fix permissions during checkout
Signed-off-by: Joas Schilling <[email protected]>
1 parent 99e1780 commit 135a10f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/generate_catalog_templates.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ jobs:
3232
with:
3333
token: ${{ secrets.COMMAND_BOT_PAT }}
3434
commit-message: 'chore(l10n): Updates catalog templates (POT files fetched automatically by transifex)'
35-
title: Updates catalog templates
36-
branch: update-l10n
35+
committer: GitHub <[email protected]>
36+
author: nextcloud-command <[email protected]>
3737
signoff: true
38+
branch: 'automated/noid/update-l10n'
39+
title: 'Updates catalog templates'
3840

3941
- uses: hmarr/auto-approve-action@f0939ea97e9205ef24d872e76833fa908a770363 # v4.0.0
4042
if: steps.cpr.outputs.pull-request-operation == 'created'

user_manual/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,10 @@ gettext:
169169
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) locale/source
170170
@echo
171171
@echo "Build finished. The message catalogs are in ./locale/source."
172+
find locale/source -type d -exec chmod 775 {} \;
173+
find locale/source -type f -exec chmod 664 {} \;
174+
@echo
175+
@echo "Build finished. The message catalogs are in ./locale/source."
172176

173177
changes:
174178
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes

0 commit comments

Comments
 (0)