We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fb701 commit 2a03eb7Copy full SHA for 2a03eb7
.github/workflows/branches.yml
@@ -1,6 +1,7 @@
1
name: Synchronize Branches
2
3
on:
4
+ workflow_dispatch:
5
pull_request:
6
branches:
7
- 'dev'
@@ -12,7 +13,7 @@ on:
12
13
jobs:
14
weblate:
15
runs-on: ubuntu-latest
- 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'
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
@@ -21,7 +22,6 @@ jobs:
21
22
uses: actions/setup-python@v5
23
with:
24
python-version: '3.10'
- cache: pip
25
26
- name: Install wlc
27
run: pip install wlc
0 commit comments