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: .github/workflows/dependencies.yaml
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
-
name: Custom Dependabot
1
+
name: Makefile Dependencies
2
2
on:
3
3
schedule:
4
4
# everyday at midnight.
5
5
- cron: '0 0 * * *'
6
+
workflow_dispatch: {}
7
+
6
8
jobs:
7
9
update-dependencies:
8
10
runs-on: ubuntu-latest
@@ -39,3 +41,18 @@ jobs:
39
41
sed -i "/^TROUBLESHOOT_VERSION/c\TROUBLESHOOT_VERSION = $VERSION" Makefile
40
42
- name: Create Pull Request
41
43
uses: peter-evans/create-pull-request@v5
44
+
with:
45
+
token: ${{ secrets.AUTOMATED_PR_GH_PAT }}
46
+
commit-message: Update Makefile versions
47
+
title: 'Update Makefile versions'
48
+
branch: automation/update-makefile
49
+
delete-branch: true
50
+
labels: |
51
+
automated-pr
52
+
makefile
53
+
type::chore
54
+
draft: false
55
+
base: "main"
56
+
body: |
57
+
Automated changes by the [cron-makefile-dependencies](https://github.com/replicatedhq/embedded-cluster/blob/main/.github/workflows/dependencies.yaml) GitHub action
0 commit comments