10
10
container :
11
11
image : atk4/image:latest # https://github.com/atk4/image
12
12
steps :
13
- - uses : actions/checkout@master
13
+ - uses : actions/checkout@v2
14
+ with :
15
+ ref : ${{ github.ref }}
14
16
- run : echo ${{ github.ref }}
15
17
- name : Update to stable dependencies
16
18
run : |
@@ -19,25 +21,10 @@ jobs:
19
21
v=$(echo ${{ github.ref }} | cut -d / -f 4)
20
22
echo "::set-env name=version::$v"
21
23
22
- - uses : teaminkling/autocommit@master
24
+ - uses : stefanzweifel/git-auto-commit-action@v4
23
25
with :
24
- commit-message : Setting release dependencies
26
+ commit_message : Setting release dependencies
25
27
- uses : ad-m/github-push-action@master
26
28
with :
27
29
branch : ${{ github.ref }}
28
30
github_token : ${{ secrets.GITHUB_TOKEN }}
29
-
30
- - name : pull-request
31
- uses : romaninsh/pull-request@master
32
- with :
33
- source_branch : " release/${{ env.version }}"
34
- destination_branch : " master" # If blank, default: master
35
- pr_title : " Releasing ${{ env.version }} into master"
36
- pr_body : |
37
- - [ ] Review changes (must include stable dependencies)
38
- - [ ] Merge this PR into master (will delete ${{ github.ref }})
39
- - [ ] Go to Releases and create TAG from master
40
- Do not merge master into develop
41
- pr_reviewer : " romaninsh"
42
- pr_assignee : " romaninsh"
43
- github_token : ${{ secrets.GITHUB_TOKEN }}
0 commit comments