You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,12 +27,19 @@ jobs:
27
27
svn-username: ${{ secrets.SVN_USERNAME }}
28
28
svn-password: ${{ secrets.SVN_PASSWORD }}
29
29
svn-url: ${{ secrets.SVN_URL }}
30
+
svn-include-from: .svninclude
30
31
svn-path: trunk
31
32
dry-run: true # Opzionale, di default è false
32
33
```
33
34
34
35
## Opzioni
35
36
37
+
### `svn-include-from`
38
+
39
+
Path al file che contiene l'elenco dei path da includere nel commit. È obbligatorio e puntare ad un file esistente che descrivere un elenco di file da includere nel commit.
40
+
Vedere `man rsync` per la documentazione di `--include-from`.
41
+
È l'opposto di un file `.gitignore`.
42
+
36
43
### `dry-run`
37
44
38
45
Se impostato a `true` non effettua il commit su SVN, ma mostra solo le modifiche che verranno effettuate.
Copy file name to clipboardExpand all lines: action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,9 @@ inputs:
20
20
svn-path:
21
21
description: "Path all'interno repository SVN"
22
22
default: 'trunk'
23
+
svn-include-from:
24
+
description: 'Path del file .svninclude che definisce l\'elenco dei file da includere con rsync. Vedere `man rsync` alla voce "--include-from" e "FILTER RULES" per maggiori informazioni'
25
+
default: '.svninclude'
23
26
package-json-path:
24
27
description: 'Path del package.json da cui estrarre la versione'
0 commit comments