File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 23
23
permissions :
24
24
contents : write
25
25
steps :
26
- - name : 🚀 Run Repository Updater
27
- uses : hassio-addons/repository-updater@v1
26
+ - name : 🏗️ Setup python env
27
+ uses : actions/setup-python@v5
28
28
with :
29
- addon : ${{ github.events.inputs.addon }}
30
- repository : ${{ github.repository }}
31
- token : ${{ secrets.updater_token }}
29
+ python-version : ' 3.11'
30
+
31
+ - name : 🏗️ Install repository-updater
32
+ run : pip install repository-updater
33
+
34
+ - name : 🏗️ Setup git user
35
+ run : |
36
+ git config user.name "${{ github.actor }}"
37
+ git config user.email "${{ github.actor }}@users.noreply.github.com"
38
+
39
+ - name : 🚀 Run Repository Updater
40
+ run : >
41
+ repository-updater
42
+ --addon "${{ github.events.inputs.addon }}"
43
+ --repository "${{ github.repository }}"
44
+ --token "${{ secrets.updater_token }}"
You can’t perform that action at this time.
0 commit comments