Skip to content

Commit 56fe5fb

Browse files
Merge pull request #20950 from timvandermeij/revert-locale-stuck-actions
Revert "Avoid to have stuck actions when running update_locales task"
2 parents 9fa5cb9 + 921e258 commit 56fe5fb

7 files changed

Lines changed: 6 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CI
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CodeQL
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Code Coverage
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Lint
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/prefs_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Prefs tests
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/types_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Types tests
2-
on: [push, pull_request, workflow_dispatch]
2+
on: [push, pull_request]
33
permissions:
44
contents: read
55

.github/workflows/update_locales.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
workflow_dispatch: # Allow manual triggering
77

88
permissions:
9-
actions: write
109
contents: write
1110
pull-requests: write
1211

@@ -50,8 +49,3 @@ jobs:
5049
--title "l10n: Update locale files" \
5150
--body "Automated weekly update of locale files from mozilla-central." \
5251
--label l10n || true
53-
# GITHUB_TOKEN-initiated pushes/PRs don't trigger other workflows.
54-
# Explicitly dispatch them so CI runs on the update-locales branch.
55-
for workflow in ci.yml lint.yml codeql.yml; do
56-
gh workflow run "$workflow" --ref update-locales
57-
done

0 commit comments

Comments
 (0)