Skip to content

Commit 68522ce

Browse files
authored
fix: exclude paths from automatic releases (#1329)
1 parent e6cffa3 commit 68522ce

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/very_good_cli.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- "lib/**"
88
- "test/**"
99
- "pubspec.yaml"
10+
- ".release-please-config.json"
1011
push:
1112
branches:
1213
- main
@@ -15,6 +16,7 @@ on:
1516
- "lib/**"
1617
- "test/**"
1718
- "pubspec.yaml"
19+
- ".release-please-config.json"
1820

1921
jobs:
2022
build:

.release-please-config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,12 @@
1919
"changelog-path": "CHANGELOG.md",
2020
"version-file": "pubspec.yaml"
2121
}
22-
}
22+
},
23+
"exclude-paths": [
24+
".github",
25+
"site",
26+
".release-please-manifest.json",
27+
".release-please-config.json",
28+
"tool"
29+
]
2330
}

0 commit comments

Comments
 (0)