Skip to content

Commit c9c73d6

Browse files
committed
Update agentic workflow
1 parent fbd8aab commit c9c73d6

File tree

3 files changed

+252
-310
lines changed

3 files changed

+252
-310
lines changed

.github/aw/actions-lock.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"version": "v8",
66
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
77
},
8+
"github/gh-aw-actions/setup@v0.63.1": {
9+
"repo": "github/gh-aw-actions/setup",
10+
"version": "v0.63.1",
11+
"sha": "53e09ec0be6271e81a69f51ef93f37212c8834b0"
12+
},
813
"github/gh-aw/actions/setup@v0.44.0": {
914
"repo": "github/gh-aw/actions/setup",
1015
"version": "v0.44.0",

.github/workflows/agentics-maintenance.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#
21
# ___ _ _
32
# / _ \ | | (_)
43
# | |_| | __ _ ___ _ __ | |_ _ ___
@@ -13,7 +12,7 @@
1312
# \ /\ / (_) | | | | ( | | | | (_) \ V V /\__ \
1413
# \/ \/ \___/|_| |_|\_\|_| |_|\___/ \_/\_/ |___/
1514
#
16-
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.53.3). DO NOT EDIT.
15+
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.63.1). DO NOT EDIT.
1716
#
1817
# To regenerate this workflow, run:
1918
# gh aw compile
@@ -62,35 +61,35 @@ jobs:
6261
pull-requests: write
6362
steps:
6463
- name: Setup Scripts
65-
uses: github/gh-aw/actions/setup@4248ac6884048ea9d35c81a56c34091747faa2ba # v0.63.0
64+
uses: github/gh-aw-actions/setup@53e09ec0be6271e81a69f51ef93f37212c8834b0 # v0.63.1
6665
with:
67-
destination: /opt/gh-aw/actions
66+
destination: ${{ runner.temp }}/gh-aw/actions
6867

6968
- name: Close expired discussions
7069
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
7170
with:
7271
script: |
73-
const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs');
72+
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
7473
setupGlobals(core, github, context, exec, io);
75-
const { main } = require('/opt/gh-aw/actions/close_expired_discussions.cjs');
74+
const { main } = require('${{ runner.temp }}/gh-aw/actions/close_expired_discussions.cjs');
7675
await main();
7776
7877
- name: Close expired issues
7978
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
8079
with:
8180
script: |
82-
const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs');
81+
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
8382
setupGlobals(core, github, context, exec, io);
84-
const { main } = require('/opt/gh-aw/actions/close_expired_issues.cjs');
83+
const { main } = require('${{ runner.temp }}/gh-aw/actions/close_expired_issues.cjs');
8584
await main();
8685
8786
- name: Close expired pull requests
8887
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
8988
with:
9089
script: |
91-
const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs');
90+
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
9291
setupGlobals(core, github, context, exec, io);
93-
const { main } = require('/opt/gh-aw/actions/close_expired_pull_requests.cjs');
92+
const { main } = require('${{ runner.temp }}/gh-aw/actions/close_expired_pull_requests.cjs');
9493
await main();
9594
9695
run_operation:
@@ -107,24 +106,24 @@ jobs:
107106
persist-credentials: false
108107

109108
- name: Setup Scripts
110-
uses: github/gh-aw/actions/setup@4248ac6884048ea9d35c81a56c34091747faa2ba # v0.63.0
109+
uses: github/gh-aw-actions/setup@53e09ec0be6271e81a69f51ef93f37212c8834b0 # v0.63.1
111110
with:
112-
destination: /opt/gh-aw/actions
111+
destination: ${{ runner.temp }}/gh-aw/actions
113112

114113
- name: Check admin/maintainer permissions
115114
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
116115
with:
117116
github-token: ${{ secrets.GITHUB_TOKEN }}
118117
script: |
119-
const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs');
118+
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
120119
setupGlobals(core, github, context, exec, io);
121-
const { main } = require('/opt/gh-aw/actions/check_team_member.cjs');
120+
const { main } = require('${{ runner.temp }}/gh-aw/actions/check_team_member.cjs');
122121
await main();
123122
124123
- name: Install gh-aw
125-
uses: github/gh-aw/actions/setup-cli@v0.63.0
124+
uses: github/gh-aw-actions/setup-cli@v0.63.1
126125
with:
127-
version: v0.53.3
126+
version: v0.63.1
128127

129128
- name: Run operation
130129
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
@@ -135,7 +134,7 @@ jobs:
135134
with:
136135
github-token: ${{ secrets.GITHUB_TOKEN }}
137136
script: |
138-
const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs');
137+
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
139138
setupGlobals(core, github, context, exec, io);
140-
const { main } = require('/opt/gh-aw/actions/run_operation_update_upgrade.cjs');
139+
const { main } = require('${{ runner.temp }}/gh-aw/actions/run_operation_update_upgrade.cjs');
141140
await main();

0 commit comments

Comments
 (0)