We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6849ada commit 6837eddCopy full SHA for 6837edd
.github/workflows/update-actions.yml
@@ -0,0 +1,23 @@
1
+name: Update GitHub Actions
2
+on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: '0 0 * * 0' # Run every Sunday at midnight
6
+
7
+jobs:
8
+ update-actions:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
14
+ - name: Update GitHub Actions
15
+ uses: ./actions
16
+ with:
17
+ token: ${{ github.token }}
18
+ base-branch: 'main'
19
+ branch-prefix: 'update-actions'
20
+ pr-title: 'Update GitHub Actions'
21
+ commit-message: 'Update GitHub Actions'
22
+ file-glob: '.github/**/*.yml'
23
+ prefixes: 'actions'
0 commit comments