Skip to content

Commit 8a9658f

Browse files
ci: remove unused 'workflow_id' input (#3493)
1 parent 895539c commit 8a9658f

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

.github/workflows/deploy-artifact-as-branch.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Deploy specified artifact as a branch
22
on:
33
workflow_call:
44
inputs:
5-
workflow_id:
6-
required: true
7-
type: string
85
artifact_name:
96
required: true
107
type: string

.github/workflows/push.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
if: github.ref == 'refs/heads/main'
1010
uses: ./.github/workflows/deploy-artifact-as-branch.yml
1111
with:
12-
workflow_id: ${{github.run_id}}
1312
artifact_name: npmDist
1413
target_branch: npm
1514
commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'npm' branch"
@@ -20,7 +19,6 @@ jobs:
2019
if: github.ref == 'refs/heads/main'
2120
uses: ./.github/workflows/deploy-artifact-as-branch.yml
2221
with:
23-
workflow_id: ${{github.run_id}}
2422
artifact_name: denoDist
2523
target_branch: deno
2624
commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'deno' branch"

0 commit comments

Comments
 (0)