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 7104309 commit a9ea428Copy full SHA for a9ea428
README.md
@@ -13,8 +13,12 @@ workflows into your own project:
13
cd /tmp
14
git clone https://github.com/laminas/automatic-releases.git
15
cd /path/to/your/project
16
-cp -r /tmp/automatic-releases/examples/.github ./.github
17
-git add .github
+mkdir -p .github/workflows
+# 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
22
git commit -m "Added release automation"
23
```
24
0 commit comments