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 0a73ae0 commit ff1cfb6Copy full SHA for ff1cfb6
.github/workflows/mirror.yml
@@ -1,6 +1,10 @@
1
name: Mirror To gemini-cli-extensions/flutter
2
3
-on: [push, delete]
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ delete:
8
9
# Ensures that only one mirror job runs at a time per branch.
10
# Cancels any in-progress job on the same branch if a new push occurs.
@@ -10,6 +14,7 @@ concurrency:
14
11
15
jobs:
12
16
mirror:
17
+ if: github.event_name == 'push' || (github.event_name == 'delete' && github.event.ref_type == 'tag')
13
18
runs-on: ubuntu-latest
19
steps:
20
- name: Checkout
0 commit comments