INN-2223 Add step.invoke()
and basis for inngest.invoke()
#494
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub PR Task List Checker | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
task-list-checker: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login != 'inngest-release-bot' && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
steps: | |
- name: Check for incomplete task list items | |
uses: Shopify/task-list-checker@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |