File tree 2 files changed +17
-3
lines changed
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Basic dependabot.yml file with
2
+ # https://docs.github.com/en/github/administering-a-repository/enabling-and-disabling-version-updates#example-dependabotyml-file
3
+
4
+ version : 2
5
+ updates :
6
+ - package-ecosystem : " github-actions"
7
+ directory : " /"
8
+ schedule :
9
+ interval : " monthly"
10
+ timezone : " Asia/Hong_Kong"
11
+ target-branch : " develop"
12
+ commit-message :
13
+ prefix : " ci"
14
+ rebase-strategy : " auto"
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout repo
12
- uses : actions/checkout@main
12
+ uses : actions/checkout@v3
13
13
- name : Setup Node.js version
14
- uses : actions/setup-node@main
14
+ uses : actions/setup-node@v3
15
15
with :
16
- node-version : 14.x
16
+ node-version-file : ' .nvmrc '
17
17
- name : Generate release body
18
18
run : |
19
19
npx rexreplace "(#+ \[\d+\.\d+\.\d+].*?)#+ \[?\d+\.\d+\.\d+]?" "_" -s -M -G -m -o "CHANGELOG.md" > RELEASE_BODY.md
You can’t perform that action at this time.
0 commit comments