Skip to content

Commit a9ea428

Browse files
committed
README: Do not add all possible workflows
1 parent 7104309 commit a9ea428

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ workflows into your own project:
1313
cd /tmp
1414
git clone https://github.com/laminas/automatic-releases.git
1515
cd /path/to/your/project
16-
cp -r /tmp/automatic-releases/examples/.github ./.github
17-
git add .github
16+
mkdir -p .github/workflows
17+
# Copy selected flow that fits for your project
18+
cp /tmp/automatic-releases/examples/.github/release-on-milestone-closed.yml .github/workflows
19+
# ... or:
20+
cp /tmp/automatic-releases/examples/.github/release-on-milestone-closed-triggering-release-event.yml .github/workflows
21+
git add .github/workflows
1822
git commit -m "Added release automation"
1923
```
2024

0 commit comments

Comments
 (0)