Skip to content

Commit

Permalink
chore(github-workflow): fix issue_bankrupt workflow (#66992)
Browse files Browse the repository at this point in the history
## Why?

Add `with` so `getInput('created')` is not undefined.
  • Loading branch information
samcx authored Jun 18, 2024
1 parent 303e196 commit 55eea1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/issue_bankrupt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
created:
description: 'github created range'
description: 'created date range'
required: true
type: string

Expand All @@ -18,6 +18,8 @@ jobs:
- run: corepack enable
- name: 'Bankrupt issues & send notification to Slack'
run: node ./.github/actions/next-repo-actions/dist/bankrupt/index.js
with:
created: ${{ github.event.inputs.created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}

0 comments on commit 55eea1c

Please sign in to comment.