68
68
69
69
pull_request :
70
70
name : Create Pull Request
71
- runs-on : ubuntu-24.04
71
+ runs-on : ubuntu-24.04-arm
72
72
steps :
73
73
- name : Checkout
74
74
uses : actions/checkout@v4
83
83
84
84
- name : PR - bugfix (conditional)
85
85
if : startsWith(github.ref, 'refs/heads/bug')
86
- uses : devops-infra/action-pull-request@v0.5.5
86
+ uses : devops-infra/action-pull-request@v0.6.0
87
87
with :
88
88
github_token : ${{ secrets.GITHUB_TOKEN }}
89
89
assignee : ${{ github.actor }}
93
93
94
94
- name : PR - dependency (conditional)
95
95
if : " startsWith(github.ref, 'refs/heads/dep') && !startsWith(github.ref, 'refs/heads/dependabot')"
96
- uses : devops-infra/action-pull-request@v0.5.5
96
+ uses : devops-infra/action-pull-request@v0.6.0
97
97
with :
98
98
github_token : ${{ secrets.GITHUB_TOKEN }}
99
99
assignee : ${{ github.actor }}
@@ -103,7 +103,7 @@ jobs:
103
103
104
104
- name : PR - documentation (conditional)
105
105
if : startsWith(github.ref, 'refs/heads/doc')
106
- uses : devops-infra/action-pull-request@v0.5.5
106
+ uses : devops-infra/action-pull-request@v0.6.0
107
107
with :
108
108
github_token : ${{ secrets.GITHUB_TOKEN }}
109
109
assignee : ${{ github.actor }}
@@ -113,7 +113,7 @@ jobs:
113
113
114
114
- name : PR - feature (conditional)
115
115
if : startsWith(github.ref, 'refs/heads/feat')
116
- uses : devops-infra/action-pull-request@v0.5.5
116
+ uses : devops-infra/action-pull-request@v0.6.0
117
117
with :
118
118
github_token : ${{ secrets.GITHUB_TOKEN }}
119
119
assignee : ${{ github.actor }}
@@ -123,7 +123,7 @@ jobs:
123
123
124
124
- name : PR - test (conditional)
125
125
if : startsWith(github.ref, 'refs/heads/test')
126
- uses : devops-infra/action-pull-request@v0.5.5
126
+ uses : devops-infra/action-pull-request@v0.6.0
127
127
with :
128
128
github_token : ${{ secrets.GITHUB_TOKEN }}
129
129
assignee : ${{ github.actor }}
@@ -135,7 +135,7 @@ jobs:
135
135
136
136
- name : PR - test (conditional)
137
137
if : " !startsWith(github.ref, 'refs/heads/bug') && !startsWith(github.ref, 'refs/heads/dep') && !startsWith(github.ref, 'refs/heads/doc') && !startsWith(github.ref, 'refs/heads/feat') && !startsWith(github.ref, 'refs/heads/test')"
138
- uses : devops-infra/action-pull-request@v0.5.5
138
+ uses : devops-infra/action-pull-request@v0.6.0
139
139
with :
140
140
github_token : ${{ secrets.GITHUB_TOKEN }}
141
141
assignee : ${{ github.actor }}
0 commit comments