Skip to content

Commit 60ee75d

Browse files
authored
ci(update-inputs): create initial version (#229)
Resolves #220. Updates action.yml inputs after an update to the octokit/openapi dependency.
1 parent 064492a commit 60ee75d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/update-inputs.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Update Inputs
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'package.json'
7+
- 'package-lock.json'
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
update-inputs:
16+
name: Update Inputs
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version-file: .node-version
23+
cache: 'npm'
24+
- run: npm ci
25+
- run: node scripts/update-inputs.js
26+
- uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0

0 commit comments

Comments
 (0)