Skip to content

Commit 2a03eb7

Browse files
committed
fix(ci): no cache and enable run manually for branches.yml
1 parent 43fb701 commit 2a03eb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Synchronize Branches
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
branches:
67
- 'dev'
@@ -12,7 +13,7 @@ on:
1213
jobs:
1314
weblate:
1415
runs-on: ubuntu-latest
15-
if: github.event.pull_request.merged == true || github.event.action == 'published'
16+
if: github.event.pull_request.merged == true || github.event.action == 'published' || github.event_name == 'workflow_dispatch'
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v4
@@ -21,7 +22,6 @@ jobs:
2122
uses: actions/setup-python@v5
2223
with:
2324
python-version: '3.10'
24-
cache: pip
2525

2626
- name: Install wlc
2727
run: pip install wlc

0 commit comments

Comments
 (0)