Skip to content

Update artifact version [Main] #192

Update artifact version [Main]

Update artifact version [Main] #192

Workflow file for this run

name: PR Tasks Completed Check
on:
pull_request:
types:
- opened
- edited
# Cancels all previous workflow runs for pull requests that have not completed.
concurrency:
# The concurrency group contains the workflow name and the branch name for pull requests
# or the commit hash for any other events.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
task-check:
name: Task Check
runs-on: ubuntu-latest
timeout-minutes: 10
# The action cannot annotate the PR when run from a PR fork or authored by Dependabot.
if: >
github.event.pull_request.draft == false &&
github.event.pull_request.head.repo.fork == false &&
github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- uses: kentaro-m/[email protected]
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'