File tree 1 file changed +37
-0
lines changed 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This file is automatically synced from:
2
+ # https://github.com/autowarefoundation/sync-file-templates
3
+ # To make changes, update the source repository and follow the guidelines in its README.
4
+
5
+ name : update-codeowners-from-packages
6
+
7
+ on :
8
+ schedule :
9
+ - cron : 0 0 * * *
10
+ workflow_dispatch :
11
+
12
+ jobs :
13
+ check-secret :
14
+ uses : autowarefoundation/autoware-github-actions/.github/workflows/check-secret.yaml@v1
15
+ secrets :
16
+ secret : ${{ secrets.APP_ID }}
17
+
18
+ update-codeowners-from-packages :
19
+ needs : check-secret
20
+ if : ${{ needs.check-secret.outputs.set == 'true' }}
21
+ runs-on : ubuntu-22.04
22
+ steps :
23
+ - name : Generate token
24
+ id : generate-token
25
+ uses : tibdex/github-app-token@v2
26
+ with :
27
+ app_id : ${{ secrets.APP_ID }}
28
+ private_key : ${{ secrets.PRIVATE_KEY }}
29
+
30
+ - name : Run update-codeowners-from-packages
31
+ uses : autowarefoundation/autoware-github-actions/update-codeowners-from-packages@v1
32
+ with :
33
+ token : ${{ steps.generate-token.outputs.token }}
34
+ pr-labels : |
35
+ tag:bot
36
+ tag:update-codeowners-from-packages
37
+ auto-merge-method : squash
You can’t perform that action at this time.
0 commit comments